chore(form): timer type error

This commit is contained in:
roymondchen 2022-09-20 20:26:13 +08:00 committed by jia000
parent 560a3acfae
commit fa4a6d71f6

View File

@ -220,7 +220,7 @@ export default defineComponent({
emits: ['change', 'select'],
setup(props, { emit }) {
let timer: number | null = null;
let timer: any | null = null;
const mForm = inject<FormState | undefined>('mForm');
const elTable = ref<any>();