add automatic login

This commit is contained in:
landaiqing
2024-08-14 20:04:57 +08:00
parent 48d2f61223
commit cab3b1ee96
18 changed files with 136 additions and 63 deletions

View File

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