|
@@ -1,11 +1,11 @@
|
|
|
-import * as ustate from '@common/src/stores/user/state'
|
|
|
-import * as umutations from '@common/src/stores/user/mutations'
|
|
|
+import * as ustate from '@common/src/stores/user/state';
|
|
|
+import * as umutations from '@common/src/stores/user/mutations';
|
|
|
|
|
|
-import { createStore } from 'vuex'
|
|
|
+import { createStore } from 'vuex';
|
|
|
const store = createStore({
|
|
|
state: { ...ustate },
|
|
|
mutations: { ...umutations },
|
|
|
actions: {},
|
|
|
modules: {}
|
|
|
-})
|
|
|
-export default store
|
|
|
+});
|
|
|
+export default store;
|