首先要配置JQUERY使用

例,给文章详情图片添加缩略图

 

基于vant ui的 ImagePreview插件

 

import Vue from "vue";
import { ImagePreview } from 'vant';
// 全局注册
Vue.use(ImagePreview);

export default {
  mounted(){
    this.$nextTick(function () {
        // 绑定图片缩略图
        $('.blog-content').on('click','img',function(){
          ImagePreview({
            images:[
              $(this).attr('src')
            ],
            showIndex:false
          });
        })
     })
  }
};

 

 

相关文章:

  • 2021-12-13
  • 2022-12-23
  • 2022-12-23
  • 2021-04-25
  • 2021-04-11
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-01
  • 2021-05-29
相关资源
相似解决方案