export default function SoftMount({
children,
child_ref,
real_class_name,
duration,
}) {
return <div/>
}
字符串
使用方法:
<SoftMount unexpected_prop={"some_value"} />
型
在<SoftMount />
内部,如何访问unexpected_prop
?
export default function SoftMount({
children,
child_ref,
real_class_name,
duration,
}) {
return <div/>
}
字符串
使用方法:
<SoftMount unexpected_prop={"some_value"} />
型
在<SoftMount />
内部,如何访问unexpected_prop
?
1条答案
按热度按时间2guxujil1#
您可以使用“rest参数”sytax(
...variable_name
)捕获所有剩余的属性字符串