美文网首页
react 本身自带类似与vue的slot功能(具名插槽)

react 本身自带类似与vue的slot功能(具名插槽)

作者: Small_Song | 来源:发表于2021-02-13 08:20 被阅读0次
class Layout extends Component {
    render(){
        return (
            <div>
                <h1>{this.props.head}</h1>
                <h2>{this.props.body}</h2>
                <h3>{this.props.foot}</h3>
            </div>
        )
    } 
}
<Layout head={<Header />} body={<Body />} foot={<Foot />}/>

相关文章

网友评论

      本文标题:react 本身自带类似与vue的slot功能(具名插槽)

      本文链接:https://www.haomeiwen.com/subject/vpndxltx.html