yinLiangDream / mp-colorui

MP-COLORUI 是基于 Taro框架的组件库,由于作者平时工作较忙,有时回复不及时,有事可以加QQ群 1145534886 咨询,文档请看这里→
https://yinliangdream.github.io/mp-colorui-doc/
MIT License
365 stars 41 forks source link

ClTabs 动态变更属性 active 时无法更新 #60

Closed gegeliu closed 4 years ago

gegeliu commented 4 years ago

采用动态方式控制 ClTabs 选项 active 第二次无效。

原因为组件属性变更时,并不会触发 componentDidMount 调用,

建议添加 componentWillReceiveProps 接收active 属性变更

多谢!

可以添加如下代码: componentWillReceiveProps( nextProps: IProps ) { if( nextProps.active != this.props.active ) this.onClickTab(nextProps.active || 0); }