Rumah > Artikel > hujung hadapan web > 在vue-cli webpack中如何引入jquery(详细教程)
我使用的是webpack模板在vue-cli生成的工程中引入jquery的方法,首先在package.json里的dependencies加入"jquery" : "^2.2.3",然后install,具体内容详情大家参考下本文
今天费了一下午的劲,终于在vue-cli 生成的工程中引入了jquery,记录一下。(模板用的webpack)
首先在package.json里的dependencies加入"jquery" : "^2.2.3",然后install
在webpack.base.conf.js里加入
var webpack = require("webpack")
在module.exports的最后加入
plugins: [ new webpack.optimize.CommonsChunkPlugin('common.js'), new webpack.ProvidePlugin({ jQuery: "jquery", $: "jquery" }) ]
然后一定要重新 run dev
在main.js 引入就ok了import $ from 'jquery'
下面看下vue 引入jquery的方法
1、npm 安装jquery
npminstall jquery --save
2、build/webpack.base.conf.js
plugins: [ new webpack.optimize.CommonsChunkPlugin('common.js'), new webpack.ProvidePlugin({ jQuery:"jquery", $:"jquery" })]
3、main.js 中引入jquery
import $ from 'jquery'
4、eslint
下一步就是要修改根目录下.eslintrc.js文件了,在改文件的module.exports中,为env添加一个键值对 jquery: true 就可以了
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
Atas ialah kandungan terperinci 在vue-cli webpack中如何引入jquery(详细教程). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!