-
Notifications
You must be signed in to change notification settings - Fork 443
组件接口说明
e1emeb0t edited this page Oct 26, 2016
·
2 revisions
为了保持组件的可控性, 所有自定义组件都需要继承于此Component, 而不是React.Component.
-
属性
-
className [String], 可以将className附加到组件的根元素的class上.
-
style [Object], 可以将style附加到组件的根元素的style上.
-
方法
-
classNames(className, ..., className), 参数类型参照[1], 返回类型为String.
- 属性
- if [any], Vue中的
v-if
的实现, 参考[2]. - show [any], Vue的
v-show
的实现, 参考[3]. - transition [String], Vue的
transition
的实现, 参考[4].
注意: React.Children.count(props.children) === 1