aboutsummaryrefslogtreecommitdiff
path: root/src/components/PrintPreview.vue
blob: ecbda88cc468e53e1a88acfb5a9706685c47e5d8 (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
<script setup lang="ts">
  import PrintPreviewHeader from './PrintPreviewHeader.vue'
  import PrintPreviewRecipientDetails from './PrintPreviewRecipientDetails.vue'
  import PrintPreviewItemsList from './PrintPreviewItemsList.vue'

  const props = defineProps(["invoice"])

  setTimeout(() => {
    console.log(props.invoice)
  }, 1000)
</script>

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

<style>
.print-preview * {
  font-size: 9pt;
}
.print-preview p {
  margin: 0;
}
</style>