使用过vue
的小伙伴都知道vue
中有个slot
,也就是插槽,作用就是占位,那么再react中可以使用children来替代
render(){ return()}我将被传递到Grid组件中
子组件
export default class Grid extends React.Component { render() { return ({this.props.children}) }}
这样就能够够实现slot的功能了。
本文共 395 字,大约阅读时间需要 1 分钟。
使用过vue
的小伙伴都知道vue
中有个slot
,也就是插槽,作用就是占位,那么再react中可以使用children来替代
render(){ return()}我将被传递到Grid组件中
子组件
export default class Grid extends React.Component { render() { return ({this.props.children}) }}
这样就能够够实现slot的功能了。
转载于:https://www.cnblogs.com/wyangnb/p/9849018.html