vue實現點擊圖片放大圖片

使用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>

 

點擊這裏查看效果

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章