修复主题颜色与字体问题

This commit is contained in:
2025-07-31 19:39:53 +08:00
parent 01892ba3c8
commit 86055073b1
4 changed files with 63 additions and 26 deletions

View File

@@ -11,7 +11,7 @@ const fuse = new Fuse(data.value || [], {
]
})
const result = computed<Array<{ item: { id: string; title: string; titles: string[]; level: number; content: string } }>>(() =>
const result = computed<Array<{ item: { id: string, title: string, titles: string[], level: number, content: string } }>>(() =>
fuse.search(toValue(query)).slice(0, 10)
)
</script>