欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue 中引用jquery

程序员文章站 2022-07-06 14:34:03
1.安装jquery npm install jquery --save-dev 2.打开配置文件webpack.base.conf.js 加入'jquery': path.resolve(__dirname, '../node_modules/jquery/src/jquery') //引入jqu ......

 

1.安装jquery

npm install jquery --save-dev

2.打开配置文件webpack.base.conf.js

加入'jquery': path.resolve(__dirname, '../node_modules/jquery/src/jquery') //引入jquery

vue 中引用jquery

3.main.js中引用jquery

import $ from "jquery"

vue 中引用jquery

4.测试

vue 中引用jquery

打印成功~引用成功