@tmagic/form 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -154,7 +154,7 @@
154
154
  /* eslint-disable no-param-reassign */
155
155
  import { computed, defineComponent, inject, onMounted, PropType, ref, toRefs } from 'vue';
156
156
  import { ArrowDown, ArrowUp, Delete, FullScreen, Grid } from '@element-plus/icons';
157
- import { ElMessage, ElTable, UploadFile } from 'element-plus';
157
+ import { ElMessage, UploadFile } from 'element-plus';
158
158
  import { cloneDeep } from 'lodash-es';
159
159
  import Sortable, { SortableEvent } from 'sortablejs';
160
160
 
@@ -223,7 +223,7 @@ export default defineComponent({
223
223
  let timer: NodeJS.Timeout | null = null;
224
224
  const mForm = inject<FormState | undefined>('mForm');
225
225
 
226
- const elTable = ref<InstanceType<typeof ElTable>>();
226
+ const elTable = ref<any>();
227
227
  const excelBtn = ref<any>();
228
228
  const mTable = ref<HTMLDivElement>();
229
229