first commit
This commit is contained in:
19
store/index.js
Normal file
19
store/index.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import getters from '@/store/getters'
|
||||
|
||||
import auth from '@/store/modules/auth'
|
||||
import location from '@/store/modules/location'
|
||||
import ws from '@/store/modules/ws'
|
||||
import policy from '@/store/modules/policy'
|
||||
|
||||
Vue.use(Vuex)
|
||||
export default new Vuex.Store({
|
||||
modules: {
|
||||
auth,
|
||||
location,
|
||||
ws,
|
||||
policy,
|
||||
},
|
||||
getters
|
||||
})
|
||||
Reference in New Issue
Block a user