nuxt如何来引入jQuery库


原文:https://www.huanggr.cn/1754.html

nuxt如何来引入jQuery库 方法一:安装 jquery 包 安装命令 1npm install –save jquery 配置 nuxt.config.js 1234567…

nuxt如何来引入jQuery库

方法一:安装 jquery 包

安装命令

1
npm install  --save jquery

配置 nuxt.config.js

1
2
3
4
5
6
7
8
9
10
11
const webpack = require('webpack')
module.exports {
    build{
        plugins[
            new webpack.ProvidePlugin({
                '$' 'jquery' 
            })
        ]
    }
   plugins[
}

组件中使用

1
2
3
mounted  ({
    $("body").append("xxx");
}
方法二:直接在 nuxt.config.js 中引入 jquery.min.js文件
1
2
3
4
5
head {
    script[
        { src'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js' }
    ]
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM