如何在Vue 3中定义props的默认值?

ki1q1bka  于 2023-08-07  发布在  Vue.js
关注(0)|答案(1)|浏览(179)

如何在Vue 3设置脚本中定义属性的默认值?

interface InputProps {
  message: string
  error?: string
}

const props = defineProps<InputProps>()

字符串

dgsult0t

dgsult0t1#

在Vue 3 Composition API中使用withDefaults添加默认值:

interface InputProps {
  message: string
  error?: string
}

const props = withDefaults(defineProps<InputProps>(), {
  message: null
})

字符串
了解更多

相关问题