方法一:

  1. 直接在vue项目的index.html中引入 外部链接即可
#index.html文件中
<script src="https://cdn.bootcdn/ajax/libs/jquery/3.5.1/jquery.js"></script>

不推荐:因为引入外部链接或者引入下载好的js文件这种方式不参与打包,需要下载到本地的jquery文件引入才可
方法二
安装依赖包

npm i jquery --save-d

全局引入

# 在src/main.js文件
import jquery from 'jquery'
Vue.prototype.$ = jquery

局部引入

#在需要的组件中
import $ from 'jquery'

更多推荐

在vue中使用 jquery 的两种方法