Print example
#110
-
is there an example around on how to use the print method? |
Beta Was this translation helpful? Give feedback.
Answered by
hrynko
Jan 6, 2023
Replies: 1 comment 3 replies
-
Hi @yngrdyn, Please check #101. Below you can find a very basic example for Vue 2: <template>
<div>
<button @click="$refs.myPdf.print()">Print</button>
<vue-pdf-embed ref="myPdf" source="<PDF_YOURL>" />
</div>
</template> |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
hrynko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @yngrdyn,
Please check #101. Below you can find a very basic example for Vue 2: