store.js 238 Bytes
Newer Older
wangdanlei's avatar
wangdanlei committed
1 2 3 4 5 6 7 8 9 10
/* store module */
import { actionInit } from '@/utils/store.js'
export default {
  namespaced: true, // namespaced must be true in module app.
  state: {
    name: process.env.VUE_APP_NAME
  },
  mutations: {},
  actions: actionInit()
}