Is there a possibility to create a public method (like the print() method) for direct downloading the rendered pdf. ```` methods: { download () { this.$refs.myPdfComponent.download() }, } ```` I make use of a source like ``data:application/pdf;base64,<BASE64_ENCODED_PDF>`` to render the pdf.