mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-26 19:46:42 +08:00
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:
parent
7c42f751a4
commit
30b209b628
@ -154,7 +154,7 @@
|
|||||||
/* eslint-disable no-param-reassign */
|
/* eslint-disable no-param-reassign */
|
||||||
import { computed, defineComponent, inject, onMounted, PropType, ref, toRefs } from 'vue';
|
import { computed, defineComponent, inject, onMounted, PropType, ref, toRefs } from 'vue';
|
||||||
import { ArrowDown, ArrowUp, Delete, FullScreen, Grid } from '@element-plus/icons-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 { cloneDeep } from 'lodash-es';
|
||||||
import Sortable, { SortableEvent } from 'sortablejs';
|
import Sortable, { SortableEvent } from 'sortablejs';
|
||||||
|
|
||||||
@ -223,7 +223,7 @@ export default defineComponent({
|
|||||||
let timer: NodeJS.Timeout | null = null;
|
let timer: NodeJS.Timeout | null = null;
|
||||||
const mForm = inject<FormState | undefined>('mForm');
|
const mForm = inject<FormState | undefined>('mForm');
|
||||||
|
|
||||||
const elTable = ref<InstanceType<typeof ElTable>>();
|
const elTable = ref<any>();
|
||||||
const excelBtn = ref<any>();
|
const excelBtn = ref<any>();
|
||||||
const mTable = ref<HTMLDivElement>();
|
const mTable = ref<HTMLDivElement>();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user