vue、Element 点击按钮以弹窗形式预览pdf文件

直接上代码吧

<div >
<el-button type="success" size="small" @click="isViewPdf20 = true" >按钮</el-button>
</div>


<el-dialog
  title="预览文件"
:visible.sync="isViewPdf20"
:before-close="handleClose"
:fullscreen="true"
>
<iframe :src=你要预览pdf的文件的地址 frameborder="0" style="width: 100vw; height: 80vh"></iframe>
</el-dialog>


posted @ 2019-12-05 17:01  我是木木呀  阅读(4921)  评论(0编辑  收藏  举报