123456789101112131415161718192021222324252627 |
- // import { REST } from 'vuejs/api/rest-axios'
- // import { JSONAPI } from 'vuejs/api/json-axios'
- // import qs from 'querystring-es3'
- export default {
- namespaced: true,
- // initial state
- state: {
- pagetitle: null
- },
- // getters
- getters: {},
- // mutations
- mutations: {
- setPagetitle (state, title) {
- console.log('Common, setPagetitle', title)
- state.pagetitle = title
- }
- },
- // actions
- actions: {}
- }
|