-
-
Notifications
You must be signed in to change notification settings - Fork 190
Open
Description
<script setup lang="ts">
defineProps({
type: {
type: String,
required: true,
default: 'default',
validator: (value: string) => {
return ['primary', 'ghost', 'dashed', 'link', 'text', 'default'].includes(
value,
)
},
},
})
console.log(
['primary', 'ghost', 'dashed', 'link', 'text', 'default'].includes('text'),
)
</script>
<template>
<button>Button</button>
</template>