1const ROUTER_INSTANCE = new VueRouter({
2 mode: "history",
3 routes: [
4 { path: "/", component: HomeComponent },
5 // ... other routes ...
6 // and finally the default route, when none of the above matches:
7 { path: "*", component: PageNotFound }
8 ]
9})
10