[Vuejs]-How to make vue js website printer accessible?

0👍

You could add a link tag inside your HTML which links to the print stylesheet, you can then let your browser know through the media attribute that it serves for printing only:

<link rel="stylesheet" href="print.css" media="print">

https://www.w3schools.com/tags/att_link_media.asp

Leave a comment