2021-11-10 22:12:48 +08:00

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;