npm install jquery --save
vue
在webpack.base.conf.js
里加入(新版的可能找不到這個文件,你能夠npm install webpack --save-dev
進行手動安裝)node
var webpack = require("webpack")
在module.exports
的最後加入python
plugins: [ new webpack.optimize.CommonsChunkPlugin('common.js'), new webpack.ProvidePlugin({ jQuery: "jquery", $: "jquery" }) ]
在main.js
引入jquery
import $ from 'jquery' //你作到這一步頁面中你直接使用$就是jq了
新版
webpack
直接在main.js
引入web
import jquery from 'jquery' //你作到這一步頁面中你直接使用$就是jq了
而後在組件的script中npm
<script> import $ from "jquery" //其實嘛你安裝依賴後你在node_modlules文件中的一個文件相對路徑而已 console.log($) //你能夠打印瞧瞧 </script>