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.
 
 
 
 
 

13 lines
309 B

<template>
<button v-on="$listeners" :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>