xxxxxxxxxx
const ROUTER_INSTANCE = new VueRouter({
mode: "history",
routes: [
{ path: "/", component: HomeComponent },
// ... other routes ...
// and finally the default route, when none of the above matches:
{ path: "*", component: PageNotFound }
]
})
xxxxxxxxxx
{
path: "/:pathMatch(.*)*",
name: 'ErrorView',
component: () => import('../components/Error.vue'),
},
xxxxxxxxxx
// if you have this
new WOW().init();
// replace it with this
new WOW.WOW().init();