Vue中使用jquery语句

2018-11-22  本文已影响0人  念_ae7b

首先在



加入下面语句:

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');
        });
}
上一篇 下一篇

猜你喜欢

热点阅读