2FAuth/resources/js/components/Button.vue

37 lines
664 B
Vue

<template>
<button
:type="nativeType"
:disabled="isLoading"
:class="{
'button': true,
[`${color}`]: true,
'is-loading': isLoading,
}">
<slot />
</button>
</template>
<script>
export default {
name: 'VButton',
props: {
color: {
type: String,
default: 'is-link'
},
nativeType: {
type: String,
default: 'submit'
},
isLoading: {
type: Boolean,
default: false
},
}
}
</script>