mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 20:28:46 -05:00
18 lines
295 B
Vue
18 lines
295 B
Vue
<template>
|
|
<div v-if="recipe.keywords.length > 0">
|
|
<small :key="k.id" v-for="k in recipe.keywords" style="padding: 2px">
|
|
{{k.icon}} {{k.name}}
|
|
</small>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'Keywords',
|
|
props: {
|
|
recipe: Object,
|
|
},
|
|
}
|
|
</script>
|