vue实现点击图片放大图片

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/y895315416/article/details/82963396

使用vue一个组件vue-directive-image-previewer

A Vue.js project for tag img, click img to zoom out to full screen.

安装vue-directive-image-previewer

命令行

npm install vue-directive-image-previewer -D

main.js

import VueDirectiveImagePreviewer from 'vue-directive-image-previewer'
import 'vue-directive-image-previewer/dist/assets/style.css'
Vue.use(VueDirectiveImagePreviewer)    

components

<template>
  <div>
      <img v-image-preview src="picture-url"/>
  </div>
</template>

 

点击这里查看效果

猜你喜欢

转载自blog.csdn.net/y895315416/article/details/82963396
今日推荐