[Vuejs]-How to save PDF in database with jsPDF?

0👍

Actually you can save the data URI in the database as a string and then fetch it with axios

This is how you get the URI string:

doc.output('datauri')

Leave a comment