1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| import Vue from 'vue'
| import Vuex from 'vuex'
| import users from "./users"
| import logs from "./logs"
| import loudspeaker from './system/loudspeaker'
| import handheldTerminal from './system/handheldTerminal'
| import orgGrid from './system/orgGrid'
| import shortMessage from './operate/managenment/shortMessage'
| import statistics from './intelligentPatrol/statistics'
| import writ from './operate/writ'
| Vue.use(Vuex)
|
| export default new Vuex.Store({
| state: {},
| getters: {},
| mutations: {},
| actions: {},
| modules: {
| users,
| logs,
| shortMessage,
| loudspeaker,
| handheldTerminal,
| statistics,
| writ,
| orgGrid
| }
| })
|
|