mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 12:49:02 -05:00
18 lines
323 B
Vue
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>
|