feat: 提交其余本地改动

This commit is contained in:
2026-02-16 12:53:23 +08:00
parent 3395e5d91c
commit 07495f8c35
7 changed files with 160 additions and 12 deletions

View File

@@ -0,0 +1,29 @@
import type { RouteRecordRaw } from 'vue-router';
import { BasicLayout } from '#/layouts';
import { $t } from '#/locales';
const routes: RouteRecordRaw[] = [
{
component: BasicLayout,
meta: {
hideInMenu: true,
title: $t('page.auth.profile'),
},
name: 'PersonalLayout',
path: '/personal',
children: [
{
name: 'PersonalCenter',
path: 'center',
component: () => import('#/views/personal/center/index.vue'),
meta: {
hideInMenu: true,
title: $t('page.auth.profile'),
},
},
],
},
];
export default routes;