Skip to content

Commit 2f4bba6

Browse files
committed
Added catch-all route
1 parent 61abf21 commit 2f4bba6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ Vue.use(VueRouter);
99
const router = new VueRouter({
1010
routes: [
1111
{ path: '', component: ProductList },
12-
{ path: '/cart', component: Cart }
12+
{ path: '/cart', component: Cart },
13+
{ path: '*', component: { template: '<h1>Page Not Found!</h1>' } }
1314
],
1415
mode: 'history'
1516
});

0 commit comments

Comments
 (0)