修复AppInstaller.vue类型错误
This commit is contained in:
parent
f2e5fce262
commit
bd566b7e8b
@ -154,7 +154,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, computed, onMounted, h } from 'vue'
|
||||
import { ref, onMounted, h } from 'vue'
|
||||
import {
|
||||
NIcon, NButton, NSpace, NCard, NUpload, NUploadDragger, NText, NP,
|
||||
NFormItem, NInput, NDataTable, NModal, NDescriptions, NDescriptionsItem,
|
||||
@ -247,7 +247,7 @@ const handleFileChange = (options: { fileList: UploadFileInfo[] }) => {
|
||||
fileList.value = options.fileList
|
||||
}
|
||||
|
||||
const customUpload = async (options: { file: File }) => {
|
||||
const customUpload = async (_options: any) => {
|
||||
// 这里不做实际上传,只是保存文件信息
|
||||
return Promise.resolve()
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user