Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 1 | import Vue from "vue"; |
| 2 | import Vuex from "vuex"; |
| 3 | |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 4 | import LocalUserManagementStore from "./modules/AccessControl/LocalUserMangementStore"; |
Yoshie Muranaka | b8b6f79 | 2019-12-03 14:47:32 -0800 | [diff] [blame^] | 5 | import GlobalStore from "./modules/GlobalStore"; |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 6 | |
Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 7 | Vue.use(Vuex); |
| 8 | |
| 9 | export default new Vuex.Store({ |
| 10 | state: {}, |
| 11 | mutations: {}, |
| 12 | actions: {}, |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 13 | modules: { |
Yoshie Muranaka | b8b6f79 | 2019-12-03 14:47:32 -0800 | [diff] [blame^] | 14 | global: GlobalStore, |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 15 | localUsers: LocalUserManagementStore |
| 16 | } |
Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 17 | }); |