mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			925 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			925 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="d-flex justify-space-between align-center pt-2 pb-3">
 | |
|     <RecipeScaleEditButton
 | |
|       v-if="!isEditMode"
 | |
|       v-model.number="scale"
 | |
|       :recipe-servings="recipeServings"
 | |
|       :edit-scale="!recipe.settings.disableAmount && !isEditMode"
 | |
|     />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import RecipeScaleEditButton from "~/components/Domain/Recipe/RecipeScaleEditButton.vue";
 | |
| import type { NoUndefinedField } from "~/lib/api/types/non-generated";
 | |
| import type { Recipe } from "~/lib/api/types/recipe";
 | |
| import { usePageState } from "~/composables/recipe-page/shared-state";
 | |
| 
 | |
| const props = defineProps<{ recipe: NoUndefinedField<Recipe> }>();
 | |
| 
 | |
| const scale = defineModel<number>({ default: 1 });
 | |
| 
 | |
| const { isEditMode } = usePageState(props.recipe.slug);
 | |
| 
 | |
| const recipeServings = computed<number>(() => {
 | |
|   return props.recipe.recipeServings || props.recipe.recipeYieldQuantity || 1;
 | |
| });
 | |
| </script>
 |