fix(spec-helper): fix typescript syntax error in specData ref definition

This commit is contained in:
DXC
2026-04-13 08:31:57 +08:00
parent c7ac092be4
commit 14eedaa57a

View File

@ -50,7 +50,7 @@ interface SpecItem {
const expanded = ref(false) const expanded = ref(false)
const filterText = ref('') const filterText = ref('')
const specData = ref<SpecItem[]([]) const specData = ref<SpecItem[]>([])
const toggle = () => { const toggle = () => {
expanded.value = !expanded.value expanded.value = !expanded.value