Browse Source

fix: lodash

jinmao88 2 năm trước cách đây
mục cha
commit
816fffe960
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/components/VxeTable/src/VxeBasicTable.tsx

+ 1 - 1
src/components/VxeTable/src/VxeBasicTable.tsx

@@ -1,7 +1,6 @@
 import { defineComponent } from 'vue';
 import { computed, ref } from 'vue';
 import { BasicTableProps } from './types';
-import { omit } from 'lodash';
 import { basicProps } from './props';
 import { ignorePropKeys } from './const';
 import { basicEmits } from './emits';
@@ -11,6 +10,7 @@ import { Grid as VxeGrid } from 'vxe-table';
 
 import { extendSlots } from '/@/utils/helper/tsxHelper';
 import { gridComponentMethodKeys } from './methods';
+import { omit } from 'lodash-es';
 
 export default defineComponent({
   name: 'VxeBasicTable',