react怎么一次渲染多个组件
2 回答
慕虎7371278
TA贡献1802条经验 获得超4个赞
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> } |
- 2 回答
- 0 关注
- 1595 浏览
添加回答
举报
0/150
提交
取消