react怎么一次渲染多个组件
1 回答
繁花如伊
TA贡献2012条经验 获得超12个赞
1、把组件import进来
1 2 3 | import { MyComponent1 } from 'components/MyComponent1 ' import { MyComponent2 } from 'components/MyComponent2 ' import { MyComponent3 } from 'components/MyComponent3 ' |
2、render方法调用组件
1 2 3 4 5 6 7 | render() { <div> <MyComponent1 /> <MyComponent2 /> <MyComponent3 /> </div> } |
添加回答
举报
0/150
提交
取消