1.在项目目录下
cnpm install --save jquery
2.在webpack.base.conf.js中加入
var webpack = require('webpack')
3.在plugins中加入
new webpack.ProvidePlugin({ $:'jquery', jQuery:'jquery', 'window.jquery':'jquery' })
这样全局就使用jquery了