add 404 page

This commit is contained in:
Will Freeman
2024-12-04 14:29:32 -07:00
parent 87ff4d0a64
commit 99ced06779
3 changed files with 26 additions and 0 deletions
+5
View File
@@ -55,6 +55,11 @@ const router = createRouter({
path: '/legal',
name: 'legal',
component: () => import('../views/LegalView.vue')
},
{
path: '/:pathMatch(.*)*',
name: 'not-found',
component: () => import('../views/404.vue')
}
]
})