[Vuejs]-Jspdf returns some content in white color

0👍

I had the same issue, font just went white after a certain point.
The Problem was that I had an css height attribute in on of the outer div’s. Deleted it and it just worked, but idk if u have the same issue here.

I suggest u check if one of your outer div’s have an css height attribute. If u don’t find it just delete one class after another until everything gets displayed correctly. Maybe check first if it gets fixed when you delete all the classes before u go through the work of deleting them one by one 😉

-1👍

I solved this by forcing the color with inline styles:

style="color:black !important"
👤losh

Leave a comment