-
-
Notifications
You must be signed in to change notification settings - Fork 201
Open
Description
<script setup>
const props = defineProps({
type: {
type: String,
validator(value) {
if (typeof value !== 'string') return false
return ['primary', 'ghost', 'dashed', 'link', 'text', 'default'].includes(value)
},
default: 'default',
required: true
},
})
</script>
<template>
<button>Button</button>
</template>