VUE中使用jquery
2021-01-17 02:14
标签:ted UNC ges from tick func bsp dex vue 首先要配置JQUERY使用 例,给文章详情图片添加缩略图 基于vant ui的 ImagePreview插件 VUE中使用jquery 标签:ted UNC ges from tick func bsp dex vue 原文地址:https://www.cnblogs.com/miangao/p/13373179.htmlimport 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
});
})
})
}
};