feat: add ample demos to @pureadmin/table (#379)

* feat: add ample demos to @pureadmin/table
This commit is contained in:
RealityBoy
2022-11-21 11:42:33 +08:00
committed by GitHub
parent 8ff242ea45
commit 9b62d6ef1e
46 changed files with 1859 additions and 48 deletions

View File

@@ -7,7 +7,7 @@ const ableRouter: RouteConfigsTable = {
meta: {
icon: "ubuntu-fill",
title: $t("menus.hsAble"),
rank: 4
rank: 5
},
children: [
{

View File

@@ -7,7 +7,7 @@ const componentsRouter: RouteConfigsTable = {
meta: {
icon: "menu",
title: $t("menus.hscomponents"),
rank: 5
rank: 6
},
children: [
{

View File

@@ -7,7 +7,7 @@ const nestedRouter: RouteConfigsTable = {
meta: {
title: $t("menus.hsmenus"),
icon: "histogram",
rank: 6
rank: 7
},
children: [
{

View File

@@ -17,11 +17,7 @@ const pptRouter: RouteConfigsTable = {
meta: {
title: "PPT",
frameSrc: "https://pipipi-pikachu.github.io/PPTist/",
frameLoading: false,
extraIcon: {
svg: true,
name: "team-iconxinpin"
}
frameLoading: false
}
}
]

View File

@@ -0,0 +1,27 @@
import type { RouteConfigsTable } from "/#/index";
const flowChartRouter: RouteConfigsTable = {
path: "/pure-table",
redirect: "/pure-table/index",
meta: {
icon: "mdi:table-large",
title: "pure-admin-table",
rank: 4
},
children: [
{
path: "/pure-table/index",
name: "PureTable",
component: () => import("@/views/pure-table/index.vue"),
meta: {
title: "pure-admin-table",
extraIcon: {
svg: true,
name: "team-iconxinpin"
}
}
}
]
};
export default flowChartRouter;