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"; |
| 5 | |
Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 6 | Vue.use(Vuex); |
| 7 | |
| 8 | export default new Vuex.Store({ |
| 9 | state: {}, |
| 10 | mutations: {}, |
| 11 | actions: {}, |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 12 | modules: { |
| 13 | localUsers: LocalUserManagementStore |
| 14 | } |
Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 15 | }); |