学习React 心得(坑)

前端之家收集整理的这篇文章主要介绍了学习React 心得(坑)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.import {render} from 'react-dom'; 报错 不识别{render}

解决
在webpack.config.js配置

在output 同级下添加
 devtool:'source-map',{test:/\.js/,loader:'react-hot-loader',exclude:/node_modules/},//react-hot-loader
            {test:/\.js$/,loader:'babel',exclude:/node_modules/,//表示不包括文件 与之相反的有include
             query:{
                 presets:['es2015','react']
             }
            },

并在webpack.config.js 同级目录下创建.baberc 文件 并配置为
{presets:[['es2015'],['react']]}

原文链接:https://www.f2er.com/react/304482.html

猜你在找的React相关文章