解决导航守卫router.beforeResolve使用不了this.$store

在vue router的导航守卫如beforeEach()中是无法直接通过this.$store去操作vuex的,因为这里的this指向不一致。
正确写法

import store from '../store'
store.state....

解决方式是在router的index.js中引入初始化好的store
总结:我们在其他js或者vue文件中使用store,axios等这些js文件时,养成一个好的习惯,先导入在使用,而不是通过this.$使用

你可能感兴趣的:(Vue,vue.js,前端,javascript)