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,36 @@
import Layout from "/@/layout/index.vue";
const errorRouter = {
path: "/error",
name: "error",
component: Layout,
redirect: "/error/401",
meta: {
icon: "el-icon-position",
title: "message.hserror",
showLink: true,
rank: 7
},
children: [
{
path: "/error/401",
name: "401",
component: () => import("/@/views/error/401.vue"),
meta: {
title: "message.hsfourZeroOne",
showLink: true
}
},
{
path: "/error/404",
name: "404",
component: () => import("/@/views/error/404.vue"),
meta: {
title: "message.hsfourZeroFour",
showLink: true
}
}
]
};
export default errorRouter;