基于vue.js的图片预览组件2.0.1

Posted baimeishaoxia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于vue.js的图片预览组件2.0.1相关的知识,希望对你有一定的参考价值。

基于vue.js的图片预览组件

Github

github

安装

npm install enlargeimg --save-dev


import enlargeimg from ‘enlargeimg‘; 


基础用法

<enlargeImg :data="files"></enlargeImg> 



export default {
  name: ‘hello‘,
  data () {
    return {
      msg: ‘Welcome to Your Vue.js App‘,
      files:[
    {
      path:‘http://img4q.duitang.com/uploads/item/201311/01/20131101141757_tunaj.png‘
    },
    {
      path:‘http://img5.duitang.com/uploads/item/201503/22/20150322122457_EQ3NP.thumb.700_0.jpeg‘
    },
    {
      path:‘http://tupian.enterdesk.com/uploadfile/2013/1219/20131219053302481.jpg‘
    },
  ]
    }
  },
}

注意事项

图片地址为path


以上是关于基于vue.js的图片预览组件2.0.1的主要内容,如果未能解决你的问题,请参考以下文章

看我如何使用Vue实现图片的上传以及大图预览功能

如何在 Vue.js (Element.ui) 中的上传按钮侧面上传后预览/显示图像?

Vue.js图片预览插件

vue.js 2 - 将单个文件组件的 html 片段提取到独立文件中

vue使用readAsDataURL实现选择图片文件后预览

Vue组件之全局组件与局部组件