mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-30 09:24:46 +08:00
30 lines
515 B
TypeScript
30 lines
515 B
TypeScript
import Layout from "/@/layout/index.vue";
|
|
|
|
const homeRouter = {
|
|
path: "/",
|
|
name: "home",
|
|
component: Layout,
|
|
redirect: "/welcome",
|
|
meta: {
|
|
icon: "HomeFilled",
|
|
title: "message.hshome",
|
|
showLink: true,
|
|
i18n: true,
|
|
rank: 0
|
|
},
|
|
children: [
|
|
{
|
|
path: "/welcome",
|
|
name: "welcome",
|
|
component: () => import("/@/views/welcome.vue"),
|
|
meta: {
|
|
title: "message.hshome",
|
|
i18n: true,
|
|
showLink: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default homeRouter;
|