mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 12:49:02 -05:00
27 lines
341 B
Vue
27 lines
341 B
Vue
<template>
|
|
<span>
|
|
<b-button v-if="item.icon" class=" btn p-0 border-0" variant="link">
|
|
{{item.icon}}
|
|
</b-button>
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'IconBadge',
|
|
props: {
|
|
item: {type: Object}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
mounted() {
|
|
},
|
|
watch: {
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script> |