show tags instead of categories

This commit is contained in:
hay-kot 2021-04-03 10:16:36 -08:00
commit a5eac9242b
2 changed files with 4 additions and 3 deletions

View file

@ -38,10 +38,11 @@
></v-rating>
<v-spacer></v-spacer>
<RecipeChips
:items="categories"
:items="tags"
:title="false"
:limit="2"
:small="true"
:isCategory="false"
/>
</v-card-actions>
</v-card>
@ -65,7 +66,7 @@ export default {
route: {
default: true,
},
categories: {
tags: {
default: true,
},
},

View file

@ -53,7 +53,7 @@
:slug="recipe.slug"
:rating="recipe.rating"
:image="recipe.image"
:categories="recipe.recipeCategory"
:tags="recipe.tags"
/>
</v-col>
</v-row>