[Vuejs]-How download pdf result without previewing and without changing page in nuxt project?

0👍

I could not find any answers but i applied a trick and i dont know what kind suprise waits me at future. In here, i used my pdf component and with little trick i hide it

  <div style="height: 0;position:  fixed;left: 50%; top: 0;
    transform: translateX(-50%);z-index: -1;overflow: hidden">
            <ticket-pdf v-if="pdfData" :pdfData="pdfData"/>
        </div>

Also left: 50%; top: 0; transform: translateX(-50%) with thtese codes, i fix it to top and center so when i downloaded pdf i dont face with slips on my pages

Leave a comment