修复AppInstaller.vue类型错误

This commit is contained in:
jingrow 2025-10-22 19:50:36 +08:00
parent f2e5fce262
commit bd566b7e8b

View File

@ -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()
}