vue 组件中使用jQuery
2020-07-29 本文已影响0人
宏_4491
下包
npm install jquery
在webpack.base.config.js里面配置
image.png plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
})
],
image.png
组件里面导入jquery
import $ from "jquery";