fix: use camelCase for not-found route name

This commit is contained in:
2026-05-14 15:55:58 +02:00
parent 08c3de5cb2
commit f152d39db8
+1 -1
View File
@@ -39,7 +39,7 @@ const routes = [
}, },
{ {
path: '/:pathMatch(.*)*', path: '/:pathMatch(.*)*',
name: 'not-found', name: 'notFound',
component: NotFound component: NotFound
}, },
]; ];