進出口新的Web開發,我和幼蟲的框架工作。我使用npm來處理包。但是現在我有一個實現JQuery的問題。引導實現對幼蟲和它的作品如何Laravel使用JQuery(NPM)
<link rel="stylesheet" href="/css/app.css">
在我的幼蟲在的package.json
"devDependencies": {
"axios": "^0.15.3",
"bootstrap-sass": "^3.3.7",
"cross-env": "^3.2.3",
"jquery": "^3.1.1",
"laravel-mix": "0.*",
"lodash": "^4.17.4",
"vue": "^2.1.10",
"webpack": "2.2.1"
}
這是否意味着jQuery是已經在我的項目?但從jquery的bootstrap中看起來如何像上面那樣的鏈接。對於bootstrap,我必須編譯新代碼(npm run dev)讓我爲Jquery做同樣的事情嗎?
,你必須執行命令'NPM運行dev'或'NPM運行production'意見。檢查整個[本頁](https://laravel.com/docs/5.4/mix#running-mix)。運行該命令Laravel的混合將包括jQuery到'app.js'中。 – Tpojka