Попробуй это.Измените свой файл роутера.store
это файл с вашим vuex:
import store from './store'
const routerOptions = [
{ path: '/', component: 'Landing',
beforeEnter(to, from, next) {
if(store.getters.isAuthenticated) {
next('/home')
} else {
next()
}
}
},
{ path: '/signin', component: 'Signin' },
{ path: '/signup', component: 'Signup' },
{ path: '/home', component: 'Home', meta: { requiresAuth: true } },
{ path: '*', component: 'NotFound' }
]