- row-edit
+ rowEdit
行编辑
diff --git a/src/modules/demo/views/crud/components/table/plugin/to-tree.vue b/src/modules/demo/views/crud/components/table/plugin/to-tree.vue
new file mode 100644
index 0000000..d2c58be
--- /dev/null
+++ b/src/modules/demo/views/crud/components/table/plugin/to-tree.vue
@@ -0,0 +1,87 @@
+
+
+
+ toTree
+ 转树形表格
+
+
+
+ 预览
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2025-03-13
+
+
+
+
+
diff --git a/src/modules/demo/views/crud/index.vue b/src/modules/demo/views/crud/index.vue
index 86cf1c2..a7a712d 100644
--- a/src/modules/demo/views/crud/index.vue
+++ b/src/modules/demo/views/crud/index.vue
@@ -82,6 +82,7 @@ import TableColumnCustom from './components/table/column-custom.vue';
import TableComponent from './components/table/component/index.vue';
import TablePluginBase from './components/table/plugin/base.vue';
import TablePluginRowEdit from './components/table/plugin/row-edit.vue';
+import TablePluginToTree from './components/table/plugin/to-tree.vue';
import UpsertBase from './components/upsert/base.vue';
import UpsertEvent from './components/upsert/event.vue';
@@ -145,7 +146,7 @@ const list = [
},
{
label: '插件',
- children: [TablePluginBase, TablePluginRowEdit]
+ children: [TablePluginBase, TablePluginRowEdit, TablePluginToTree]
}
]
},