更新 SearchBarView.vue

This commit is contained in:
Aqr-K
2024-12-27 16:01:30 +08:00
parent 565ebd936e
commit 84652e8c82

View File

@@ -20,6 +20,9 @@ const emit = defineEmits(['close'])
// 搜索词
const searchWord = ref<string | null>(null)
// 合成式输入法状态
const isComposing = ref(false)
// ref
const searchWordInput = ref<HTMLElement | null>(null)