首页 > TAG信息列表 > actionsHello
vuex 的模块中如何调用 actions 中的方法
模块vuexTest.js /** * 模块vuexTest.js */ export default { namespaced: true, actions: { actionsHello(context, val) { console.log(context, "context"); // 与 store 实例具有相同方法和属性的 context 对象 属性有 state、getters、rootGetters、rootState、commit、di