浏览代码

chore: add vxe-table export example (#4769)

Svend 6 月之前
父节点
当前提交
c2d59dea69
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 2 0
      packages/effects/plugins/src/vxe-table/init.ts
  2. 2 1
      playground/src/views/examples/vxe-table/remote.vue

+ 2 - 0
packages/effects/plugins/src/vxe-table/init.ts

@@ -28,6 +28,7 @@ import {
   VxeSelect,
   VxeTooltip,
   VxeUI,
+  VxeUpload,
   // VxeSwitch,
   // VxeTextarea,
 } from 'vxe-pc-ui';
@@ -92,6 +93,7 @@ export function initVxeTable() {
   // VxeUI.component(VxeSwitch);
   // VxeUI.component(VxeTextarea);
   VxeUI.component(VxeTooltip);
+  VxeUI.component(VxeUpload);
 
   isInit = true;
 }

+ 2 - 1
playground/src/views/examples/vxe-table/remote.vue

@@ -31,6 +31,7 @@ const gridOptions: VxeGridProps<RowType> = {
     { field: 'price', title: 'Price' },
     { field: 'releaseDate', formatter: 'formatDateTime', title: 'DateTime' },
   ],
+  exportConfig: {},
   height: 'auto',
   keepSource: true,
   proxyConfig: {
@@ -45,7 +46,7 @@ const gridOptions: VxeGridProps<RowType> = {
   },
   toolbarConfig: {
     custom: true,
-    // export: true,
+    export: true,
     // import: true,
     refresh: true,
     zoom: true,