update at 2026-02-08 12:08:50

This commit is contained in:
douboer
2026-02-08 12:08:50 +08:00
parent 9722953746
commit e2a46e413a
2 changed files with 10 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ const fontTree = computed(() => fontStore.fontTree)
const normalizedSearchKeyword = computed(() => searchKeyword.value.trim().toLowerCase())
const isSelectedOnlyMode = computed(() => {
const keyword = normalizedSearchKeyword.value
return keyword.includes('选中') || keyword.includes('选择') || keyword.includes('已选')
return keyword.includes('选中') || keyword.includes('选择') || keyword.includes('已选') || keyword.includes('xuan')
})
const normalizedNameSearchKeyword = computed(() => {
return isSelectedOnlyMode.value ? '' : normalizedSearchKeyword.value