forked from AkkomaGang/admin-fe
17 lines
298 B
JavaScript
17 lines
298 B
JavaScript
|
import app from '@/store/modules/app'
|
||
|
import errorLog from '@/store/modules/errorLog'
|
||
|
import user from '@/store/modules/user'
|
||
|
import users from '@/store/modules/users'
|
||
|
import getters from '@/store/getters'
|
||
|
|
||
|
export default {
|
||
|
modules: {
|
||
|
app,
|
||
|
errorLog,
|
||
|
user,
|
||
|
users
|
||
|
},
|
||
|
getters
|
||
|
}
|
||
|
|