步骤:
全局安装:
npm install jquery --save
组件内使用方法:
直接引用即可
import $ from 'jquery'
全局用法:
main.js中引入
// jquery
import $ from 'jquery'
Vue.prototype.$ = $;
更改vue.config.js
const webpack = require('webpack')
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'windows.jQuery': 'jquery'
})
]
}
.eslintrc.js中添加节点,否则编译会报错
jquery: true