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

323 - Prop Validation

Open zhang13pro opened this issue 2 years ago • 0 comments

// your answers
<script setup>
defineProps({
  type: {
    default: 'default',
    validator(value) {
      return ['primary', 'ghost', 'dashed', 'link', 'text', 'default'].includes(value)
    }
  },
})
</script>

<template>
  <button>Button</button>
</template>

zhang13pro avatar Sep 21 '22 01:09 zhang13pro