• vue3实现在element Dialog 对话框中预览pdf文件


    最近有一个需求就是点击按钮在弹框中去预览pdf文件,于是发现了一个HTML中比较重要的标签:embed,前面说的需求就可以用这个标签来实现,一起来学习一下吧。

    embed标签是HTML中的一个非常重要的标签,它可以在你的网页上插入各种类型的多媒体内容,例如交互式应用程序,PDF,Flash,音频和视频文件等。

    下面是embed标签的一些主要属性:

    1. src:此属性定义要嵌入的资源的URL。
    2. type:此属性定义资源的MIME类型。MIME类型是一种识别数据类型的方式,如
      ‘image/jpeg’、‘video/mpeg’ 等。
    3. width 和 height:这些属性定义嵌入对象的尺寸,单位为像素。
    4. pluginspage:此属性指向能播放嵌入内容的插件的下载位置。

    下面直接看具体应用吧,我是把它单独拎出页面写的,所以直接在需要用到的组件里引入,想要传什么值自行添加即可

    <template>
      <!-- 弹出框 -->
      <el-dialog
        title="pdf预览.pdf"
        v-model="openPdf"
        @close="onClose"
        :close-on-click-modal="false"
        width="1050px"
      >
      <!-- 预览pdf文件 -->
        <embed
          src="https://www.latex-project.org/help/documentation/usrguide.pdf"
          type="application/pdf"
          width="1010px"
          height="600px"
        />
      </el-dialog>
    </template>
    
    <script setup name="showPdf">
    import { ref, reactive, computed, watch, getCurrentInstance } from "vue";
    const { proxy } = getCurrentInstance();
    // 是否打开弹窗
    const openPdf = ref(false);
    
    const props = defineProps({
      openPdf:{
        type:Boolean
      },
      uuid:{
        type:String
      },
      title:{
        type:String
      }
    })
    // 关闭弹窗
    const onClose =()=>{
      openPdf.value = false;
    }
    </script>
    
    <style lang="scss" scoped></style>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    
    <template>
         <button @click="openDetail">打开弹窗</button>
         <!-- 弹窗 -->
         <showPdf v-model="openPdf" :uuid="uuid"></showPdf>
      </div>
    </template>
    
    <script setup>
    import { ref} from "vue";
    import showPdf from "@/views/showPdf.vue" // 引入前面写好的弹窗组件
    
    const uuid = ref(null);
    const openPdf = ref(false);
    
    /**打开pdf弹窗 */
    const openDetail=()=> {
      openPdf.value = true;
    };
    </script>
    
    <style lang="scss" scoped></style>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23

    效果图:
    在这里插入图片描述

  • 相关阅读:
    学习日记(单元测试、反射、注解、动态代理)
    查看docker run 时启动命令
    MongoDB的安装及命令行操作
    2022“杭电杯”中国大学生算法设计超级联赛(5)
    Unity - 踩坑日志 - 低版本线性颜色空间渲染异常的 “BUG”
    Java中的文件操作(基础知识+三个小程序练习)
    作为资深Mac用户,有哪些你相见恨晚的软件值得推荐?
    SQLite数据库创建表与增删改查
    嵌入式人工智能入门:深度学习模型的部署与优化
    UNETR 论文精解
  • 原文地址:https://blog.csdn.net/weixin_56733569/article/details/133905212