美文网首页
vue 组件中使用jQuery

vue 组件中使用jQuery

作者: 宏_4491 | 来源:发表于2020-07-29 18:57 被阅读0次

    下包

    npm install jquery
    

    在webpack.base.config.js里面配置

    image.png
      plugins: [
        new webpack.ProvidePlugin({
          $: 'jquery',
          jQuery: 'jquery'
        })
      ],
    
    image.png

    组件里面导入jquery

    import $ from "jquery";
    

    相关文章

      网友评论

          本文标题:vue 组件中使用jQuery

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