This commit is contained in:
vabene1111
2021-11-01 11:37:55 +01:00
parent 4efed9a1d2
commit 355f2d30a6
4 changed files with 4 additions and 5 deletions

View File

@ -0,0 +1,17 @@
<template>
<div v-if="recipe.keywords.length > 0">
<span :key="k.id" v-for="k in recipe.keywords" class="pl-1">
<b-badge pill variant="light" class="font-weight-normal">{{k.label}}</b-badge>
</span>
</div>
</template>
<script>
export default {
name: 'Keywords',
props: {
recipe: Object,
},
}
</script>