Taro ui里,如果在tabs组件里设置多行省略号的样子,就不会换行,不知道是不是默认加了 white-space: nowrap不能换行; 当我把需要省略的项拿出tabs后就可以出现省略号,
<AtTabs current={current} tabList={tabList} onClick={this.handleClick}>
<AtTabsPane current={this.state.current} index={0} >
<View className="addr1">豪大酒店右侧豪大酒店右侧豪大酒店右侧豪大酒店右侧豪大酒店右侧豪大酒店右侧</View>
</AtTabsPane>
</AtTabs>
解决办法: 样式上加 white-space: normal 初始化;