|
阅读:10269回复:0
[前端]React 坑人问题:报错:The tag is unrecognized in this browser.If you meant to render a React component, sta
报错信息:
The tag is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter. 问题描述: 此浏览器无法识别标记。如果要呈现react组件,请以大写字母开头。 报错原因: react组件首字母要大写 解决方案: 引入组件时,将组件的首字母大写 如: import {Drawer} from 'antd'转自:https://blog.csdn.net/bobobocai/article/details/100698112 |
|
|