Generating a PDF file from React Components

后端 未结 8 1962
無奈伤痛
無奈伤痛 2020-12-02 10:45

I have been building a polling application. People are able to create their polls and get data regarding the question(s) they ask. I would like to add the functionality to l

8条回答
  •  攒了一身酷
    2020-12-02 11:25

    npm install jspdf --save
    

    //code on react

    import jsPDF from 'jspdf';
    
    
    var doc = new jsPDF()
    
    
     doc.fromHTML("
    JOmin
    ", 1, 1) onclick // doc.save("name.pdf")

提交回复
热议问题