当前位置: 首页 > article >正文

点击展示大图预览

原文链接在table表格里能够实现,点击里面的图片实现大图预览的效果;

一、先安装viewer — 使用npm安装

npm install v-viewer --save

二、在main.js中引入

import Viewer from 'v-viewer'  //点击图片大图预览
import 'viewerjs/dist/viewer.css'
Vue.use(Viewer)
Viewer.setDefaults({  //默认样式,可以按需求更改
  Options: { 'inline': true, 'button': true, 'navbar': true, 'title': true, 'toolbar': true, 'tooltip': true, 'movable': true, 'zoomable': true, 'rotatable': true, 'scalable': true, 'transition': true, 'fullscreen': true, 'keyboard': true, 'url': 'data-source' }
})

三、在页面上使用

<el-table-column prop="imgPath" label="菜品图片" align="center" header-align="center">
	<template slot-scope="scope">
	  <viewer>
		<img :src="scope.row.imgPath" width="60px" />
	  </viewer>
	</template>
</el-table-column>

下面是,默认选项介绍:
在这里插入图片描述


http://www.kler.cn/a/443286.html

相关文章:

  • 机器学习无处不在,AI顺势而为,创新未来
  • ThreadLocal 的使用场景
  • GitLab创建用户,设置访问SSH Key
  • maven之插件调试
  • 计算机网络基础——网络协议
  • 分享:osgb倾斜数据转cesium-3dtiles 小工具.
  • 易语言OCR证件照文字识别
  • 在 Mac M1 上使用 Docker 运行 Jenkins
  • [IT项目管理]九.项目质量管理
  • 联表查询相关语法
  • 梯度(Gradient)和 雅各比矩阵(Jacobian Matrix)的区别和联系:中英双语
  • rabbitMq的status报错Error: unable to perform an operation on node ‘rabbit……
  • WebRTC搭建与应用(一)-ICE服务搭建
  • DevExpress WinForms中文教程:Grid View - 如何实现固定列?
  • AndroidStudio XML不识别自定义控件
  • 【计算机毕设】基于Python预制菜可视化数据分析预测推荐系统(完整系统源码+数据库+详细部署教程)✅
  • 经典电荷泵/Charge pump——1998.JSSC
  • SLAAC如何工作?
  • Windows系统如何配置远程音频
  • 【自动化部署】Ansible循环
  • Java线程状态详解
  • 企业配置NAT出口产生环路怎么办?用户访问服务器的响应速度非常慢,如何解决?
  • Optimal Algorithms:滑动窗口+二分查找
  • LeetCode 1847.最近的房间:有序集合
  • 【漏洞复现】Grafana 安全漏洞(CVE-2024-9264)
  • Spring依赖注入不同类型的数据