Files
schisandra-cloud-album-front/src/router/modules/landing.ts
2024-08-14 20:04:57 +08:00

12 lines
229 B
TypeScript

export default [
{
path: '/',
name: 'index',
component: () => import('@/views/Landing/LandingPage.vue'),
meta: {
requiresAuth: false,
title: '首页'
}
}
];