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