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.
16 lines
310 B
16 lines
310 B
import Vuex from 'vuex'
|
|
import socket from '@/uni_modules/vrapile-im/store/modules/socket'
|
|
import chat from '@/uni_modules/vrapile-im/store/modules/chat'
|
|
import getters from './getters'
|
|
|
|
// Vue.use(Vuex)
|
|
|
|
const store = new Vuex.Store({
|
|
modules: {
|
|
chat,
|
|
socket
|
|
},
|
|
getters
|
|
})
|
|
|
|
export default store
|