Files
recipes/vue/src/components/Keywords.vue
2021-06-08 12:22:08 +02:00

18 lines
323 B
Vue

<template>
<div v-if="recipe.keywords.length > 0">
<span :key="k.id" v-for="k in recipe.keywords" style="padding: 2px">
<b-badge pill variant="light">{{k.label}}</b-badge>
</span>
</div>
</template>
<script>
export default {
name: 'Keywords',
props: {
recipe: Object,
},
}
</script>