feat: card list demo (#242)

This commit is contained in:
一万
2022-04-13 21:31:36 +08:00
committed by GitHub
parent 160db34fa0
commit c89620159a
19 changed files with 1021 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ const aboutRouter = {
icon: "question-line",
title: $t("menus.hsAbout"),
i18n: true,
rank: 14
rank: 15
},
children: [
{

View File

@@ -9,7 +9,7 @@ const guideRouter = {
icon: "guide",
title: $t("menus.hsguide"),
i18n: true,
rank: 13
rank: 14
},
children: [
{

View File

@@ -0,0 +1,28 @@
import { $t } from "/@/plugins/i18n";
const Layout = () => import("/@/layout/index.vue");
const ableRouter = {
path: "/list",
component: Layout,
redirect: "/list/card",
meta: {
icon: "list-check",
title: $t("menus.list"),
i18n: true,
rank: 12
},
children: [
{
path: "/list/card",
name: "listCard",
component: () => import("/@/views/list/card/index.vue"),
meta: {
title: $t("menus.listCard"),
i18n: true,
showParent: true
}
}
]
};
export default ableRouter;