mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-03 13:19:16 -05:00
some more things in recipe view
This commit is contained in:
@@ -13,8 +13,8 @@
|
||||
<script lang="ts">
|
||||
import {defineComponent} from 'vue'
|
||||
import {ApiApi, Recipe} from "@/openapi";
|
||||
import KeywordsComponent from "@/components/display/KeywordsComponent.vue";
|
||||
import RecipeCardComponent from "@/components/display/RecipeCardComponent.vue";
|
||||
import KeywordsComponent from "@/components/display/KeywordsBar.vue";
|
||||
import RecipeCardComponent from "@/components/display/RecipeCard.vue";
|
||||
|
||||
export default defineComponent({
|
||||
name: "RecipeSearchPage",
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
<template>
|
||||
<RecipeViewComponent :recipe="recipe"></RecipeViewComponent>
|
||||
<RecipeView :recipe="recipe"></RecipeView>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import {defineComponent} from 'vue'
|
||||
import {ApiApi, Recipe} from "@/openapi";
|
||||
import RecipeViewComponent from "@/components/display/RecipeViewComponent.vue";
|
||||
import RecipeView from "@/components/display/RecipeView.vue";
|
||||
|
||||
export default defineComponent({
|
||||
name: "RecipeSearchPage",
|
||||
components: {RecipeViewComponent},
|
||||
components: {RecipeView},
|
||||
props: {
|
||||
id: Number
|
||||
id: {type: String, required: true}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user