2020-05-11 18:20:52 +00:00
|
|
|
import app from '@/store/modules/app'
|
|
|
|
import peers from '@/store/modules/peers'
|
|
|
|
import user from '@/store/modules/user'
|
|
|
|
import settings from '@/store/modules/settings'
|
|
|
|
import status from '@/store/modules/status'
|
|
|
|
import getters from '@/store/getters'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
modules: {
|
|
|
|
app,
|
|
|
|
peers,
|
|
|
|
settings,
|
|
|
|
status,
|
2020-05-12 19:43:15 +00:00
|
|
|
user: { ...user, state: { ...user.state, authHost: 'localhost:4000' }}
|
2020-05-11 18:20:52 +00:00
|
|
|
},
|
|
|
|
getters
|
|
|
|
}
|