mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
32 lines
895 B
Vue
32 lines
895 B
Vue
<template>
|
|
<div v-if="recipe.keywords.length > 0">
|
|
<span :key="k.id" v-for="k in recipe.keywords.slice(0,keyword_splice).filter((kk) => { return kk.show || kk.show === undefined })" class="pl-1">
|
|
<a :href="`${resolveDjangoUrl('view_search')}?keyword=${k.id}`"><b-badge pill variant="light"
|
|
class="font-weight-normal">{{ k.label }}</b-badge></a>
|
|
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import {ResolveUrlMixin} from "@/utils/utils";
|
|
|
|
export default {
|
|
name: 'KeywordsComponent',
|
|
mixins: [ResolveUrlMixin],
|
|
props: {
|
|
recipe: Object,
|
|
limit: Number,
|
|
},
|
|
computed: {
|
|
keyword_splice: function (){
|
|
if(this.limit){
|
|
return this.limit
|
|
}
|
|
return this.recipe.keywords.lenght
|
|
}
|
|
}
|
|
}
|
|
</script>
|