24 lines
475 B
Vue
24 lines
475 B
Vue
<template>
|
|
<b-field class="column pb-0" :class="columnSize">
|
|
<b-button
|
|
type="is-success"
|
|
@click="buscar()"
|
|
:disabled="disabled"
|
|
expanded
|
|
rounded
|
|
>
|
|
Buscar
|
|
</b-button>
|
|
</b-field>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
disabled: { type: Boolean, required: false, default: true },
|
|
buscar: { type: Function, required: true },
|
|
columnSize: { typeof: String, required: false, default: '' },
|
|
},
|
|
}
|
|
</script>
|