1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import Vue from 'vue'
| import Vuex from 'vuex'
|
| import actions from '@/store/actions.js'
| import getters from '@/store/getters.js'
| import mutations from '@/store/mutations.js'
| import state from '@/store/state.js'
|
| Vue.use(Vuex)
|
| export default new Vuex.Store({
| state,
| mutations,
| getters,
| actions
| })
|
|