我的问题,怎么关掉或删除问题呀
onmyway911
- 发布:2020-01-30 14:31
- 更新:2021-08-03 11:32
- 阅读:1394
【报Bug】uni-segmented-control 改变绑定值或index值,不能更新控件
分类:uni-app
2 个回复
1***@qq.com
遇到同样的问题请问解决了吗
2***@qq.com
<uni-segmented-control :current="current" :values="items" @clickItem="onClickItem" styleType="button" activeColor="#4cd964"></uni-segmented-control>
data里加上初始值 items:[1,2,3]
methods里面加上这个
onClickItem(e){
this.current= e.currentIndex
},