mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-21 02:15:54 +08:00
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
// 根级别的 mutation
|
|
const mutations = {
|
|
// 更新socket 连接状态
|
|
UPDATE_SOCKET_STATUS(state, status) {
|
|
state.socketStatus = status
|
|
},
|
|
}
|
|
|
|
export default mutations
|