first few pieces

This commit is contained in:
vabene1111
2024-02-21 22:06:07 +01:00
parent 5587429475
commit b0e01e13bf
7 changed files with 135 additions and 50 deletions

View File

@@ -1,18 +1,15 @@
<template>
<v-img max-height="15vh" :src="recipe.image"></v-img>
<h3>{{ recipe.name }}</h3>
{{ recipe.description }}
{{recipe}}
<RecipeViewComponent :recipe="recipe"></RecipeViewComponent>
</template>
<script lang="ts">
import {defineComponent} from 'vue'
import {ApiApi, Recipe} from "@/openapi";
import RecipeViewComponent from "@/components/display/RecipeViewComponent.vue";
export default defineComponent({
name: "RecipeSearchPage",
components: {},
components: {RecipeViewComponent},
props: {
id: Number
},