ルーターから vuex ゲッターを呼び出すことは可能ですか? 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()
}
})
どうもありがとう!