🎨 调整帖子查找overlay逻辑

This commit is contained in:
目棃
2024-11-24 11:26:26 +08:00
parent d56ed5f64a
commit f47c1619e8
3 changed files with 27 additions and 22 deletions

View File

@@ -72,8 +72,8 @@ interface ToAchiInfoEmits {
const props = defineProps<ToAchiInfoProps>();
const emits = defineEmits<ToAchiInfoEmits>();
const showSearch = ref(false);
const search = ref("");
const showSearch = ref<boolean>(false);
const search = ref<string>();
const visible = computed({
get: () => props.modelValue,