以前在main.js里用$bus方式 存放了一些公共数据。现在打算不用$bus了用vuex。把程序的公共数据 放vuex有关的store.js里的state里。现在main.js 里的有axios请求与响应拦截代码,拦截代码用到了store.js里的公共数据。
请问main.js 里的axios 拦截函数里 如何 获取 store.js 里的state 数据?
这些公共数据肯定是全局要保持相同的。
main.js
import store from './store' if (store && store.state) { ... }
1.4m articles
1.4m replys
5 comments
57.0k users