You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
550 B
26 lines
550 B
import { createStore } from 'vuex'; |
|
import user from './modules/user'; |
|
import common from './modules/common'; |
|
import tags from './modules/tags'; |
|
import logs from './modules/logs'; |
|
import dict from './modules/dict'; |
|
import isRefresh from './modules/isRefresh'; |
|
import Customer from './modules/Customer'; |
|
import getters from './getters'; |
|
import print from './modules/print'; |
|
|
|
const store = createStore({ |
|
modules: { |
|
user, |
|
common, |
|
logs, |
|
tags, |
|
dict, |
|
isRefresh, |
|
Customer, |
|
print, |
|
}, |
|
getters, |
|
}); |
|
|
|
export default store;
|
|
|