vue cli 3 引入 使用jQuery

// 安装jquery
npm install jquery --save

// 打开.eslintrc.js 添加
module.exports = {
  env: {
    jquery:true
  }
}

// 打开vue.config.js 文件 添加
const webpack = require('webpack')
module.exports = {
    configureWebpack: {
        plugins: [
            new webpack.ProvidePlugin({
                $: "jquery",
                jQuery: "jquery",
                "windows.jQuery": "jquery"
            })
        ]
    },
}

 

你可能感兴趣的:(vue cli 3 引入 使用jQuery)