feat: 语法错误修复

This commit is contained in:
duanshuwen
2025-12-09 22:18:36 +08:00
parent b842f946a5
commit aab6ffb174
28 changed files with 372 additions and 3301 deletions

View File

@@ -10,16 +10,13 @@
</template>
<script setup lang="ts">
import { defineProps } from 'vue'
interface TitleSectionProps {
title?: string
desc?: string
}
const props = defineProps({
title: {
type: String,
default: ''
},
desc: {
type: String,
default: ''
}
})
</script>
withDefaults(
defineProps<TitleSectionProps>(),
{ title: '', desc: '' }
)
</script>