You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
307 B

<template>
<button :type="type" class="bg-primary px-6 py-3 leading-none rounded text-lg font-semibold text-white disabled:bg-gray-300">
<slot></slot>
</button>
</template>
<script>
export default {
props: {
type: {
default: 'button',
},
},
};
</script>