美文网首页
在 vue 的 nuxt 中引入 jquery 库

在 vue 的 nuxt 中引入 jquery 库

作者: 前端Tree | 来源:发表于2020-08-07 15:47 被阅读0次

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

    nuxt如何来引入jQuery库
    方法一:安装 jquery 包
    安装命令
    1

    npm install --save jquery
    
    配置 nuxt.config.js
    const webpack = require('webpack')
    module.exports = {
        build: {
            plugins: [
                new webpack.ProvidePlugin({
                    '$' : 'jquery' 
                })
            ]
        }, 
       plugins: [] 
    }
    

    组件中使用

    mounted () {
        $("body").append("xxx");
    }
    

    方法二:直接在 nuxt.config.js 中引入 jquery.min.js文件

    head: {
        script: [
            { src: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js' }
        ]
    }
    
    扫码_搜索联合传播样式-标准色版_看图王.png

    相关文章

      网友评论

          本文标题:在 vue 的 nuxt 中引入 jquery 库

          本文链接:https://www.haomeiwen.com/subject/axgfdktx.html