props使用方法

国服第二切图仔 / 2024-02-20 / 原文

props默认值

const props = withDefaults(
  defineProps<{
     属性1:booelan
     属性2: string
  }>(),
  {
    属性1:false,
    属性2: ''
  }  
)