在 vue 中使用 jquery 方法
在 vue.config.js 中配置。使用以下命令安装 jquery。在需要使用的页面中引入即可使用。
·
使用以下命令安装 jquery
npm install jquery --save
在 vue.config.js 中配置
const webpack = require('webpack')
module.exports = {
chainWebpack: config => {
config.plugin('provide').use(webpack.ProvidePlugin, [{
$: 'jquery',
jquery: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
}])
}
}
在需要使用的页面中引入即可使用
import $ from "jquery"
❀❀❀❀❀❀ 完结散花 ❀❀❀❀❀❀
Written ❤️ sywdebug.
更多推荐
已为社区贡献7条内容
所有评论(0)