Commit 816fffe960c25fd4d55e13d5dec5720be4338847
1 parent
0ad30503
fix: lodash
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/VxeTable/src/VxeBasicTable.tsx
1 | import { defineComponent } from 'vue'; | 1 | import { defineComponent } from 'vue'; |
2 | import { computed, ref } from 'vue'; | 2 | import { computed, ref } from 'vue'; |
3 | import { BasicTableProps } from './types'; | 3 | import { BasicTableProps } from './types'; |
4 | -import { omit } from 'lodash'; | ||
5 | import { basicProps } from './props'; | 4 | import { basicProps } from './props'; |
6 | import { ignorePropKeys } from './const'; | 5 | import { ignorePropKeys } from './const'; |
7 | import { basicEmits } from './emits'; | 6 | import { basicEmits } from './emits'; |
@@ -11,6 +10,7 @@ import { Grid as VxeGrid } from 'vxe-table'; | @@ -11,6 +10,7 @@ import { Grid as VxeGrid } from 'vxe-table'; | ||
11 | 10 | ||
12 | import { extendSlots } from '/@/utils/helper/tsxHelper'; | 11 | import { extendSlots } from '/@/utils/helper/tsxHelper'; |
13 | import { gridComponentMethodKeys } from './methods'; | 12 | import { gridComponentMethodKeys } from './methods'; |
13 | +import { omit } from 'lodash-es'; | ||
14 | 14 | ||
15 | export default defineComponent({ | 15 | export default defineComponent({ |
16 | name: 'VxeBasicTable', | 16 | name: 'VxeBasicTable', |