1、安装
yarn add jquery -S
2、webpack.config.js
let webpack = require('webpack');
module.exports = {
plugins: [
...
new webpack.ProvidePlugin({
$: 'jquery', // jquery把$暴露出来
jquery: 'jquery'
})
],
}
ok
1、安装
yarn add jquery -S
2、webpack.config.js
let webpack = require('webpack');
module.exports = {
plugins: [
...
new webpack.ProvidePlugin({
$: 'jquery', // jquery把$暴露出来
jquery: 'jquery'
})
],
}
ok