如何在Vue 3设置脚本中定义属性的默认值?
interface InputProps { message: string error?: string } const props = defineProps<InputProps>()
字符串
dgsult0t1#
在Vue 3 Composition API中使用withDefaults添加默认值:
withDefaults
interface InputProps { message: string error?: string } const props = withDefaults(defineProps<InputProps>(), { message: null })
字符串了解更多
1条答案
按热度按时间dgsult0t1#
在Vue 3 Composition API中使用
withDefaults
添加默认值:字符串
了解更多