mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-15 14:03:36 +08:00
33 lines
635 B
TypeScript
33 lines
635 B
TypeScript
import Layout from "/@/layout/index.vue";
|
|
|
|
const editorRouter = {
|
|
path: "/editor",
|
|
name: "reEditor",
|
|
component: Layout,
|
|
redirect: "/editor/index",
|
|
meta: {
|
|
icon: "el-icon-edit-outline",
|
|
title: "message.hseditor",
|
|
showLink: true,
|
|
rank: 2
|
|
},
|
|
children: [
|
|
{
|
|
path: "/editor/index",
|
|
name: "reEditor",
|
|
component: () => import("/@/views/editor/index.vue"),
|
|
meta: {
|
|
title: "message.hseditor",
|
|
showLink: true,
|
|
keepAlive: true,
|
|
extraIcon: {
|
|
svg: true,
|
|
name: "team-iconxinpin"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default editorRouter;
|