aboutsummaryrefslogtreecommitdiff
path: root/src/components/PrintPreview.vue
blob: 1e98eb7c1ab18c444d89517e52dfdd9760d47c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<script setup lang="ts">
  import { ref, toRaw, onMounted } from "vue"

  import PrintPreviewHeader from './PrintPreviewHeader.vue'
  import PrintPreviewRecipientDetails from './PrintPreviewRecipientDetails.vue'
  import PrintPreviewItemsList from './PrintPreviewItemsList.vue'
  import PrintPreviewFooter from './PrintPreviewFooter.vue'

  const props = defineProps(["invoice", "total"])
</script>

<template>
  <div class="print-preview">
    <PrintPreviewHeader 
      :invoice="props.invoice" />
    <PrintPreviewRecipientDetails 
      :invoice="props.invoice"/>
    <PrintPreviewItemsList 
      :items="props.invoice.Items"/>
    <PrintPreviewFooter 
      :total="props.total"/>
  </div>
</template>

<style>
.print-preview * {
  font-size: 9pt;
}
.print-preview p {
  margin: 0;
}
.print-preview {
  display: grid;
  grid-template-rows: 1fr 2fr auto 1.5fr;
  row-gap: 1em;
}
</style>