feat: add anchor、tabs、treeSelect Components

This commit is contained in:
xiaoxian521
2022-03-10 00:36:11 +08:00
parent 8d539d4c21
commit 2e5667f652
7 changed files with 356 additions and 14 deletions

View File

@@ -66,6 +66,33 @@ const ableRouter = {
title: $t("menus.hsLineTree"),
i18n: true
}
},
{
path: "/able/antTabs",
name: "reAntTabs",
component: () => import("/@/views/able/ant-tabs.vue"),
meta: {
title: $t("menus.hsAntTabs"),
i18n: true
}
},
{
path: "/able/antAnchor",
name: "reAntAnchor",
component: () => import("/@/views/able/ant-anchor.vue"),
meta: {
title: $t("menus.hsAntAnchor"),
i18n: true
}
},
{
path: "/able/antTreeSelect",
name: "reAntTreeSelect",
component: () => import("/@/views/able/ant-treeSelect.vue"),
meta: {
title: $t("menus.hsAntTreeSelect"),
i18n: true
}
}
]
};