mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 17:07:19 +08:00
28 lines
672 B
TypeScript
28 lines
672 B
TypeScript
import RowDrag from "./drag/row/index.vue";
|
||
import ColumnDrag from "./drag/column/index.vue";
|
||
import Contextmenu from "./contextmenu/index.vue";
|
||
|
||
const rendContent = (val: string) =>
|
||
`代码位置:src/views/pure-table/high/${val}/index.vue`;
|
||
|
||
export const list = [
|
||
{
|
||
key: "rowDrag",
|
||
content: rendContent("drag/row"),
|
||
title: "拖拽表格(行拖拽)",
|
||
component: RowDrag
|
||
},
|
||
{
|
||
key: "columnDrag",
|
||
content: rendContent("drag/column"),
|
||
title: "拖拽表格(列拖拽)",
|
||
component: ColumnDrag
|
||
},
|
||
{
|
||
key: "contextmenu",
|
||
content: rendContent("contextmenu"),
|
||
title: "右键菜单",
|
||
component: Contextmenu
|
||
}
|
||
];
|