Vue中引入jQuery

1.安装jQuery
npm install jquery --save
2.在入口文件引入jquery并挂载在vue实例中

Vue中引入jQuery_第1张图片

3.在vue.config.js中配置jquery

Vue中引入jQuery_第2张图片

const webpack = require("webpack");

module.exports = {
 configureWebpack: {

   plugins: [
     new webpack.ProvidePlugin({
       $: "jquery",
       jQuery: "jquery",
       "window.jQuery": "jquery",
       Popper: ["popper.js", "default"]
     })
   ]
 }
};

这样就行了

你可能感兴趣的:(vue,vue,jquery)