shop-front-end/src/router/modules/global.ts

21 lines
410 B
TypeScript
Raw Normal View History

2025-03-04 09:11:33 +08:00
export default {
path: "/global",
redirect: "/global/user/profile",
meta: {
icon: "checkboxCircleLine",
title: "首页",
rank: 0,
showLink: false
},
children: [
{
path: "/global/user/profile",
name: "Success",
component: () => import("@/views/system/user/profile/index.vue"),
meta: {
title: "个人中心"
}
}
]
} as RouteConfigsTable;