Skip to content

Prop验证 简单 #Components

By Lov`u`e @heappynd

接受挑战    English

请验证Button组件的Prop类型 ,使它只接收: primary | ghost | dashed | link | text | default ,且默认值为default

<script setup>
defineProps({
  type: {},
})
</script>

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

分享你的解答 查看解答