chore: release v1.0.6 (#183)

* fix(form): el-table类型引用有问题,改为any

* chore: release v1.0.6

Co-authored-by: roymondchen <roymondchen@tencent.com>
This commit is contained in:
jia000 2022-07-15 18:19:50 +08:00 committed by GitHub
parent 7c42f751a4
commit 30b209b628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@
/* eslint-disable no-param-reassign */
import { computed, defineComponent, inject, onMounted, PropType, ref, toRefs } from 'vue';
import { ArrowDown, ArrowUp, Delete, FullScreen, Grid } from '@element-plus/icons-vue';
import { ElMessage, ElTable, UploadFile } from 'element-plus';
import { ElMessage, UploadFile } from 'element-plus';
import { cloneDeep } from 'lodash-es';
import Sortable, { SortableEvent } from 'sortablejs';
@ -223,7 +223,7 @@ export default defineComponent({
let timer: NodeJS.Timeout | null = null;
const mForm = inject<FormState | undefined>('mForm');
const elTable = ref<InstanceType<typeof ElTable>>();
const elTable = ref<any>();
const excelBtn = ref<any>();
const mTable = ref<HTMLDivElement>();