vue-cli4.x引入jquery

1)安装:

npm install jquery --save

2)配置vue.config.js

module.exports = {
  chainWebpack: config => {
    config.plugin('provide').use(webpack.ProvidePlugin, [{
      $: 'jquery',
      jquery: 'jquery',
      jQuery: 'jquery',
      'window.jQuery': 'jquery'
    }])
  }
}

3)在需要用到的vue组件中引入:

import $ from 'jquery

vue-cli4.x引入jquery_第1张图片

你可能感兴趣的:(vue2)