vue使用jquery


  1. 使用 npm 添加 jquery

  2. webpack 配置添加 jquery插件

    module.exports = merge(baseWebpackConfig, {
        ...
        plugins: [
            new webpack.ProvidePlugin({
                $: 'jquery'
            })
        ]
    }
  3. 在项目JavaScript中直接 使用 $ 即可调用jquery.


参考文档


Author: Itaken
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source Itaken !
  TOC目录