参考地址 nuxt引入jQuery库
方法一
安装 jquery 包
npm install --save jquery
配置 nuxt.config.js
const webpack = require('webpack') module.exports = { 组件中使用 mounted () { $("body").append("1"); 方法二:直接在 nuxt.config.js 中引入 jquery.min.js文件 head: { script: [ 或者也可以在子组件内部引入。