You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
454 B
26 lines
454 B
import Layout from "/@/layout/index.vue";
|
|
|
|
const homeRouter = {
|
|
path: "/",
|
|
name: "home",
|
|
component: Layout,
|
|
redirect: "/welcome",
|
|
meta: {
|
|
icon: "el-icon-s-home",
|
|
showLink: true,
|
|
rank: 0
|
|
},
|
|
children: [
|
|
{
|
|
path: "/welcome",
|
|
name: "welcome",
|
|
component: () => import("/@/views/welcome.vue"),
|
|
meta: {
|
|
title: "message.hshome",
|
|
showLink: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default homeRouter;
|