fix ui warnings

This commit is contained in:
jxxghp
2025-04-13 16:00:31 +08:00
parent 8b53cd0a09
commit cb5bccc945
12 changed files with 70 additions and 70 deletions

View File

@@ -2,7 +2,7 @@
import type { PropType } from 'vue'
import type { FileItem } from '@/api/types'
import { useDisplay } from 'vuetify'
import type { Axios, AxiosRequestConfig } from 'axios'
import type { AxiosRequestConfig } from 'axios'
// 显示器宽度
const display = useDisplay()
@@ -23,7 +23,7 @@ const props = defineProps({
},
endpoints: Object,
axios: {
type: Object as PropType<Axios>,
type: Function,
required: true,
},
})