Printing a q-dialog
-
I’ve put some content into a q-dialog full screen page. This scrolls down off the bottom of the page. I want to print this but it only prints one page not the whole of the display onto multiple pages. Has anyone come across this?
-
I found a solution if anyone hits the same issue…
Installed vue-print-nb from https://www.npmjs.com/package/vue-print-nb
Decluttered code sample…
<q-dialog> <q-card > <div id="print"> <q-btn v-print="'#print'" /> <MyComponent /> </div> </q-card>