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