123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import Layout from "/@/layout/index.vue";
- const tabsRouter = {
- path: "/tabs",
- name: "reTabs",
- component: Layout,
- redirect: "/tabs/index",
- meta: {
- icon: "IF-team-icontabs",
- title: "message.hstabs",
- i18n: true,
- showLink: true,
- rank: 8
- },
- children: [
- {
- path: "/tabs/index",
- name: "reTabs",
- component: () => import("/@/views/tabs/index.vue"),
- meta: {
- title: "message.hstabs",
- showLink: true,
- i18n: true
- }
- },
- {
- path: "/tabs/detail/:id",
- name: "tabDetail",
- component: () => import("/@/views/tabs/tabDetail.vue"),
- meta: {
- title: "",
- showLink: false,
- i18n: false,
- dynamicLevel: 3,
- realPath: "/tabs/detail",
- refreshRedirect: "/tabs/index"
- }
- }
- ]
- };
- export default tabsRouter;
|