123456789101112131415161718192021222324252627 |
- import Vue from 'vue'
- import Vuex from 'vuex'
- import Store from '../../lib/store/index'
- Vue.use(Vuex)
- Store.state = {
- ...(Store.state),
-
- }
- Store.actions = {
- ...(Store.actions),
-
- }
- Store.mutations = {
- ...(Store.mutations),
-
- }
- let _store = new Vuex.Store(Store)
- export default _store
|