Skip to content
Advertisement

How to download a vue file as pdf file in vuejs?

I have a vue as below which I want to download as PDF when I click on a button in main_component. Please help me find a way around to do so.

download.vue

JavaScript

main_file.vue

JavaScript

Advertisement

Answer

You can use the Javascript window.print document method and import your download.vue component into main_file.vue component and then pass the innerHTML of download.vue component by using $refs.

Method 1: Save as PDF without any plugin.

Here is the code snippet that will give you a dialog of print, where you can print or save PDF.

main_file.vue

JavaScript

UPDATE

Method 2: Generate PDF of Any Component with CSS: To generate pdf and auto-download with all inner HTML and CSS, use the VueHtml2pdf npm package; it has many customization options and can help you download your component into PDF.

Here is working example with your code:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement