如何在Vue專案中正確的引入JQuery
操作方法
安裝jquery依賴
npm install jquery --save
- 修改兩處配置檔案(測試vue版本為2.5)
// 整體位置
module.exports = {
// 其他程式碼...
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src' ),
}
},
// 增加一個plugins
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
],
// 其他程式碼...
}
3.直接在需要的頁面引用