我看了ant Design 1.x版本中没有图片预览功能,别的都有,歧视vue2是吧!!!
如果使用
window.open(url, "_blank");
的话,会打开新页面去查看图片,好像有点low。。。
于是呢,我就找呀找呀找到viewer,发现还挺好用的。
1.首先需要安装
npm install v-viewer --save
2.在main.js注册
import "viewerjs/dist/viewer.css";
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' }
})
3.只需要在图片外面套一个viewer标签就可以
然后配置一个images
<viewer :images="text?.split(',')" class="photos">
<img
v-for="(src, index) in text?.split(',')"
:src="src"
:key="index"
/>
</viewer>
来吧展示O(∩_∩)O~
嗯,就这么简单。。。。