VUE中使用jquery
Posted miangao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE中使用jquery相关的知识,希望对你有一定的参考价值。
首先要配置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 }); }) }) } };
以上是关于VUE中使用jquery的主要内容,如果未能解决你的问题,请参考以下文章