feat: add pure-admin-thin

This commit is contained in:
xiaoxian521
2021-10-16 16:16:58 +08:00
parent 7067396ade
commit f4b5150b03
127 changed files with 11709 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
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;