refactor(components): 将 VSelect 组件替换为 VAutocomplete组件,以支持搜索待选项

- 在多个组件中将 VSelect 组件替换为 VAutocomplete 组件,以支持搜索待选项
- 此更改可以提供更丰富的用户交互体验和更好的性能
This commit is contained in:
shaw
2025-06-02 21:48:07 +08:00
parent 31047b0d44
commit 2efe8efde0
9 changed files with 23 additions and 23 deletions

View File

@@ -172,7 +172,7 @@ onMounted(async () => {
/>
</VCol>
<VCol cols="6" md="3">
<VSelect
<VAutocomplete
v-model="siteForm.pri"
:label="t('site.fields.priority')"
:items="priorityItems"
@@ -213,7 +213,7 @@ onMounted(async () => {
/>
</VCol>
<VCol cols="6" md="3">
<VSelect
<VAutocomplete
v-model="siteForm.downloader"
:label="t('site.fields.downloader')"
:items="downloaderOptions"