npm install vue-photo-preview --save

main.js

// 点击图片放大展示
import preview from 'vue-photo-preview'
import 'vue-photo-preview/dist/skin.css'
Vue.use(preview, options)
// 配置项感觉也可以放在具体的组件中
var options = {
    fullscreenEl: false, //关闭全屏按钮
    tapToClose: true,
}

html

// preview="0" 必须相同才是一组照片
<img preview="0" preview-text="描述文字" :src="item" v-for="(item,i) in imgs" :key="i" alt>

js,图片是后台请求的,需要监测更新

data() {
    return {
      imgs: []
    };
  },
 watch: {
    imgs() {
      this.$nextTick(() => {
        this.$previewRefresh();
      });
    }
  },
Logo

前往低代码交流专区

更多推荐