¿Cómo puedo agregar reglas cuando isLogged = true (usuario registrado), entonces el usuario no abre/inicia sesión?
router.beforeEach((to, from, next) => { if (to.name === 'Login') { next() } else if (to.meta && to.meta.auth === false) { next() } else if (store.getters.isLoggedIn) { next() } else { next({ name: 'Login' }) } })