added some cooklog stuff

This commit is contained in:
vabene1111
2024-02-24 13:44:20 +01:00
parent 1e349214fe
commit 3c7fd0fa35
11 changed files with 217 additions and 56 deletions

View File

@@ -65,6 +65,8 @@
<Step :step="s"></Step>
</v-card>
<RecipeActivity :recipe="recipe"></RecipeActivity>
</template>
<script lang="ts">
@@ -76,10 +78,11 @@ import NumberScalerDialog from "@/components/inputs/NumberScalerDialog.vue"
import IngredientsTable from "@/components/display/IngredientsTable.vue";
import StepsOverview from "@/components/display/StepsOverview.vue";
import Step from "@/components/display/Step.vue";
import RecipeActivity from "@/components/display/RecipeActivity.vue";
export default defineComponent({
name: "RecipeView",
components: {Step, StepsOverview, IngredientsTable, NumberScalerDialog, KeywordsBar},
components: {RecipeActivity, Step, StepsOverview, IngredientsTable, NumberScalerDialog, KeywordsBar},
computed: {
},