vue 引入 jquery
vue中引入jquery安装jquery包npm install jquery --save配置vue.config.jsconst webpack = require('webpack');module.exports = {configureWebpack: {plugins: [new webpack.ProvidePlugin({$: "jquery",jQuery: "jquery","
·
vue中引入jquery
- 安装jquery包
npm install jquery --save
- 配置vue.config.js
const webpack = require('webpack');
module.exports = {
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
Popper: ["popper.js", "default"]
})
]
}
}
- 在main.js中全局引用
import jquery from 'jquery';
Vue.prototype.jquery = $
- 在文件中使用
$(function(){
alert('load')
})
生效:
更多推荐
已为社区贡献4条内容
所有评论(0)