vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

323 - Prop验证

Open kalu5 opened this issue 2 years ago • 0 comments

// 你的答案
<script setup>
defineProps({
  type: {
    type: String,
    default: 'default',
    validator(val) {
      return ['primary' , 'ghost' , 'dashed' , 'link' , 'text' , 'default'].includes(val)
    }
  },
})
</script>

kalu5 avatar Aug 08 '22 02:08 kalu5