点击展示大图预览

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

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

bash 复制代码
npm install v-viewer --save

二、在main.js中引入

javascript 复制代码
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' }
})

三、在页面上使用

html 复制代码
<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>

下面是,默认选项介绍: