0👍
✅
Change routers
to routes
const router = new VueRouter({
routes: [ // <<< here
{path: '/home', component: Home},
{path: '/helloworld', component: HelloWorld},
],
mode: "history"
})
-1👍
Source:stackexchange.com