<template>
<div ref="doc" v-if="estimate">{{estimate}}

<button @click="makePDF">Generate</button>
</div>
</template>

<script setup>
import { ref } from "vue"
import html2pdf from "html2pdf.js";

const doc = ref(null)
const props = defineProps(['token', 'estimate'])

function makePDF() {
  html2pdf(doc.value)
}
</script>

<style>
</style>