测试
测是水水水水水水水水水水
import { createStore } from 'vuex'
export default createStore({
state: {
sysMsgs: "aaaaaaaaaaaa"
},
mutations: {
setSysMsg(state, msg) {
state.sysMsgs = msg;
}
},
actions: {
getSysMsgs(ctx) {
return ctx.state.sysMsgs;
}
},
modules: {
}
})