35 lines
642 B
TypeScript
35 lines
642 B
TypeScript
import Layout from "/@/layout/index.vue";
|
|
|
|
const remainingRouter = [
|
|
{
|
|
path: "/login",
|
|
name: "login",
|
|
component: () => import("/@/views/login.vue"),
|
|
meta: {
|
|
title: "message.hslogin",
|
|
showLink: false,
|
|
rank: 101
|
|
}
|
|
},
|
|
{
|
|
path: "/redirect",
|
|
name: "redirect",
|
|
component: Layout,
|
|
meta: {
|
|
icon: "HomeFilled",
|
|
title: "message.hshome",
|
|
showLink: false,
|
|
rank: 104
|
|
},
|
|
children: [
|
|
{
|
|
path: "/redirect/:path(.*)",
|
|
name: "redirect",
|
|
component: () => import("/@/views/redirect.vue")
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
export default remainingRouter;
|