mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 22:43:34 -07:00
restore proper component order
This commit is contained in:
parent
0aa5c35491
commit
b1d87b4672
1 changed files with 12 additions and 4 deletions
|
@ -21,10 +21,18 @@
|
||||||
a significant amount of prop management. When we move to Vue 3 and have access to some of the newer API's the plan to update this
|
a significant amount of prop management. When we move to Vue 3 and have access to some of the newer API's the plan to update this
|
||||||
data management and mutation system we're using.
|
data management and mutation system we're using.
|
||||||
-->
|
-->
|
||||||
<RecipePageInfoEditor v-if="isEditMode" :recipe="recipe" :landscape="landscape" />
|
<div>
|
||||||
<RecipePageEditorToolbar v-if="isEditForm" :recipe="recipe" />
|
<RecipePageInfoEditor v-if="isEditMode" :recipe="recipe" :landscape="landscape" />
|
||||||
<RecipePageIngredientEditor v-if="isEditForm" :recipe="recipe" />
|
</div>
|
||||||
<RecipePageScale v-model:scale="scale" :recipe="recipe" />
|
<div>
|
||||||
|
<RecipePageEditorToolbar v-if="isEditForm" :recipe="recipe" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<RecipePageIngredientEditor v-if="isEditForm" :recipe="recipe" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<RecipePageScale v-model:scale="scale" :recipe="recipe" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
This section contains the 2 column layout for the recipe steps and other content.
|
This section contains the 2 column layout for the recipe steps and other content.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue