我想在一个js文件中中引用vuex中的数据?怎么使用?这个文件a.js,想在这里面使用vuex中的数据?怎么办?????
2 回答
慕丝7291255
TA贡献1859条经验 获得超6个赞
在其他js文件里引用vuex吗
import store from './store.js';console.log(store.state); store.commit('xxx');
直接引用store就行了
添加回答
举报
0/150
提交
取消