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

View file

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