0👍
✅
Seems I was overlooking. Solution is very simple. Just add isPublic
and set it to true
under meta
in route
const routes = [
...
{
path: process.env.BASE_URL + 'welcome',
name: 'Welcome',
component: () => import('../views/Welcome.vue'),
meta: {
isPublic: true
}
},
...
]
Source:stackexchange.com