22 lines
265 B
Vue
22 lines
265 B
Vue
<template>
|
|
<button>
|
|
{{ text }}
|
|
<fa v-if="icon" :icon="icon" />
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
text: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
icon: {
|
|
type: Array,
|
|
default: null
|
|
}
|
|
}
|
|
}
|
|
</script>
|