2023-02-19 18:37:18 -06:00
|
|
|
<template>
|
2025-06-20 00:09:12 +07:00
|
|
|
<div class="print-container">
|
|
|
|
<RecipePrintView
|
|
|
|
:recipe="recipe"
|
|
|
|
:scale="scale"
|
|
|
|
:density="'compact'"
|
|
|
|
/>
|
|
|
|
</div>
|
2023-02-19 18:37:18 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import RecipePrintView from "~/components/Domain/Recipe/RecipePrintView.vue";
|
2025-06-20 00:09:12 +07:00
|
|
|
import type { Recipe } from "~/lib/api/types/recipe";
|
2023-02-19 18:37:18 -06:00
|
|
|
|
2025-06-20 00:09:12 +07:00
|
|
|
export default defineNuxtComponent({
|
2023-02-19 18:37:18 -06:00
|
|
|
components: {
|
|
|
|
RecipePrintView,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
recipe: {
|
|
|
|
type: Object as () => Recipe,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
scale: {
|
|
|
|
type: Number,
|
|
|
|
default: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
@media print {
|
|
|
|
body,
|
|
|
|
html {
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.print-container {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-main {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-main__wrap {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.print-container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
</style>
|