先安裝依賴vue
npm install jquery
在src同級目錄下新建一個vue.config.js
文件
jquery
粘貼下面內容到這個文件中便可webpack
const webpack = require('webpack') module.exports = { //引入jquery chainWebpack: config => { config.plugin('provide').use(webpack.ProvidePlugin, [{ $: 'jquery', jquery: 'jquery', jQuery: 'jquery', 'window.jQuery': 'jquery' }]) } }