Files
schisandra-cloud-album-front/src/router/modules/notFound.ts
landaiqing fea8b9df2d add 404 page
2024-08-11 19:36:42 +08:00

12 lines
220 B
TypeScript

export default [
{
path: '/404',
name: '404',
component: () => import('@/views/404/NotFound.vue'),
meta: {
requiresAuth: false,
title: '404'
}
}
];