1234567891011121314151617181920212223242526272829 |
- import Layout from "/@/layout/index.vue";
- const homeRouter = {
- path: "/",
- name: "home",
- component: Layout,
- redirect: "/welcome",
- meta: {
- icon: "HomeFilled",
- title: "message.hshome",
- showLink: true,
- i18n: true,
- rank: 0
- },
- children: [
- {
- path: "/welcome",
- name: "welcome",
- component: () => import("/@/views/welcome.vue"),
- meta: {
- title: "message.hshome",
- i18n: true,
- showLink: true
- }
- }
- ]
- };
- export default homeRouter;
|