The problem I'm currently having is that my '/'
route with vue-router shows an empty page.
my route looks like this
const route = [
{
path: '',
component: HomeTemplate,
children: [
{
path: '/home', component: Homepage
}
]
}
]
How can i redirect my ''
or '/'
route to a page not found component