pdf文件预览
1、embed 标签
<template>
<div style="height:100vh">
<embed src="https://fscdn.xxx.com/pdf文件地址.pdf"
width="100%"
height="100%"
type="application/pdf" />
</div>
</template>
2、iframe 标签
<template>
<div style="height:100vh">
<iframe src="https://fscdn.xxx.com/pdf文件地址.pdf"
width="100%"
height="100%" />
</div>
</template>