使用过vue
的小伙伴都知道vue
中有个slot
,也就是插槽,作用就是占位,那么再react中可以使用children来替代
父组件
render(){
return(
<div>
<Grid>
我将被传递到Grid组件中
</Grid>
</div>
)
}
子组件
export default class Grid extends React.Component {
render() {
return (
<div>{this.props.children}</div>
)
}
}
这样就能够够实现slot的功能了。
原文地址:https://www.cnblogs.com/wyangnb/p/9849018.html
时间: 2024-10-31 13:14:12