其实iframe并不能去掉打印、下载功能,我们要用embed标签来替换。例如:将
<iframe :src="pdfUrl" width="100%" height="100%" frameborder="0"></iframe>
替换成
<embed :src="`${pdfUrl}#toolbar=0`" hidden="false" type="application/pdf" height="100%" width="100%" />
注意#toolbar=0
是必须加在url后面的,这样才会生效