美文网首页
Vue中使用jquery语句

Vue中使用jquery语句

作者: 念_ae7b | 来源:发表于2018-11-22 21:34 被阅读0次

首先在



加入下面语句:

const webpack = require("webpack")
plugins: [
    new webpack.ProvidePlugin({
      jQuery:"jquery",
      $:"jquery"
    })
  ],

然后再在你需要的用到地方加入下面语句:

import $ from "jquery"

写自己的jqery语句:

 mounted(){
        $("ul li").on("click",function(){
          $(this).addClass("active");
          $('li').not($(this)).removeClass('active');
        });
}

相关文章

网友评论

      本文标题:Vue中使用jquery语句

      本文链接:https://www.haomeiwen.com/subject/ufvrqqtx.html