refactor:修复 antd typecheck 提供的报错

This commit is contained in:
YunaiV
2025-04-23 12:56:35 +08:00
parent a6f25d477b
commit b4efb7c468
19 changed files with 210 additions and 147 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts" setup>
import type { IPropTypes } from '@tinymce/tinymce-vue/lib/cjs/main/ts/components/EditorPropTypes';
import type { Editor as EditorType } from 'tinymce/tinymce';
import type { Editor as EditorType } from '@tinymce/tinymce-vue';
import type { PropType } from 'vue';

View File

@@ -113,7 +113,6 @@ export const useUpload = () => {
});
} else {
// 模式二:后端上传
// TODO @芋艿:这里有爆红
return uploadFile({ file }, onUploadProgress);
}
};