是否可以从路由器调用 vuex getter?我需要从 beforeach 钩子中检查布尔变量的状态:
router.beforeEach(function ({ to, next }) {
if (to.path !== '/login') {
// return a Promise that resolves to true or false
return the-needed-variable-from-store;
} else {
next()
}
})
非常感谢!