react代码
强哥_前端
其实我是00后
展开
-
react兄弟组件传值之PubSubJS
pubsub-js原创 2022-08-06 13:55:44 · 294 阅读 · 0 评论 -
Mac安装卸载插件报: or try running npm ERR! the command again as root/Administrator.
根据报错提示 需要管理员权限,那我们加上就OK了npm WARN checkPermissions Missing write access to /usr/local/lib/node_modulesnpm ERR! code EACCESnpm ERR! syscall accessnpm ERR! path /usr/local/lib/node_modules/vue-cli/node_modules/ansi-wrapnpm ERR! errno -13npm ERR! Error原创 2020-07-19 14:57:39 · 1292 阅读 · 0 评论 -
react项目报警告Use PascalCase for React components
Warning: <searchInfoTitle /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.我这里是因为react组件名字首字母小写了的原因,改成大写就可以了。记得是首字母需要大写,其他的随意...原创 2019-07-09 08:06:52 · 13595 阅读 · 0 评论 -
Parsing error: Expected corresponding JSX closing tag for 某个元素
改到前面后,问题解决原创 2019-07-21 18:23:42 · 8991 阅读 · 0 评论 -
Warning: Failed prop type: Invalid prop `span` of type `string` supplied to `Col`, expected `number`
解决办法是将span后的数字用{} 花括号包起来,帮点个赞呗原创 2019-07-22 14:43:04 · 4411 阅读 · 1 评论 -
react中使用百度ECharts,特别OK
import React, { Component } from 'react';import { Card } from 'antd';import echartTheme from '../echartTheme';// import echarts from 'echarts'; //加载所有的图表//按需加载import echarts from 'echarts/lib/ec...原创 2019-08-28 14:31:32 · 261 阅读 · 0 评论