如何在Vue中使用jQuery

安裝依賴

yarn add jquery

修改build/webpack.base.conf.js

添加以下配置:javascript

var webpack=require('webpack');

module.exports={} 添加以下配置:vue

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

在main.js中引入

import $ from 'jquery'

在Vue組件中的script塊中使用

// 這是jq的代碼
$(function(){
    $('.aui-content-main .aui-content-menu').hover(function(){
      $(this).addClass('active').find('s').hide();
      $(this).find('.aui-content-menu-dow').show();
    },function(){
      $(this).removeClass('active').find('s').show();
      $(this).find('.aui-content-menu-dow').hide();
    });
  });

// 這是vue的js代碼
export default {...}
相關文章
相關標籤/搜索