pingcrm/resources/js/Shared/LoadingButton.vue

15 lines
234 B
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<button :disabled="loading" class="flex items-center">
2019-05-15 10:24:42 -03:00
<div v-if="loading" class="btn-spinner mr-2" />
2019-03-18 08:53:00 -03:00
<slot />
</button>
</template>
<script>
export default {
props: {
loading: Boolean,
},
}
</script>