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.
 
 
 
 
 
 

11 lines
370 B

const getters = {
chatList: state => state.chat.chatList,
friendList: state => state.chat.friendList,
groupList: state => state.chat.groupList,
userObject: state => state.chat.userObject,
groupObject: state => state.chat.groupObject,
websocket: state => state.socket.websocket,
websocketData: state => state.socket.websocketData
}
export default getters