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>
|