React当中不存在v-slot插槽这种概念,而当我们又需要实现这个种功能时,该怎么办呢?
我们可以通过props children属性去实现。
props children属性:
- children属性:表示该组件的子节点,自动放在props的children属性里
- 它值可以是任意类型(文本、React元素、数组、组件、对象、函数)
function New(props) {return (<div>{props.children}</div>)
}// 使用时,在new标签内写入的内容都会放在props的children里面
<New><span>我时插槽平替</span>
</New>