使用步骤:
注意事项:img标签上的class类不能去掉,每个图片数据对象中,必须有 w 和 h 属性

  1. 安装 npm i vue-preview -S
  2. .在main.js文件中导入该组件,并挂载到Vue身上
    import VuePreview from ‘vue-preview’;
    Vue.use(VuePreview);
    3.在组件中使用
    在放缩略图的位置放入模板
    <img class=“preview-img” v-for="(item, index) in list" :src=“item.src” height=“100” @click="$preview.open(index, list)">
    在这里插入图片描述
    4.自己在data中定义一个 list:‘’
    5.发送请求获取缩略图
    在这里插入图片描述

相关文章: