I am working on developing an app in Vue and I am encountering an issue while trying to use vue-html2pdf for generating PDF files from an HTML element. The problem is that the PDF generated seems to be cut off. You can view a screenshot of the HTML element here
Additionally, here is the PDF file that is being generated: here
Below is the code of the element that I am trying to convert into a PDF file.
<vue-html2pdf
:show-layout="false"
:float-layout="true"
:enable-download="true"
:preview-modal="true"
:paginate-elements-by-height="1000"
filename="hee hee"
:pdf-quality="2"
:manual-pagination="false"
pdf-format="a4"
pdf-orientation="portrait"
pdf-content-width="800px"
ref="html2Pdf"
>
<section slot="pdf-content" >
<section class="pdf-content">
<WarscrollComponent
v-for="(miniscroll, index) in getScrollsToPrint"
:key="index"
:miniscroll="miniscroll"
component="printSheet"
/>
</section>
</section>
</vue-html2pdf>
Any suggestions on what might be causing this issue?