Page 1 of 1

Ray @ray-js/components-ty-picker

Posted: 2024年 Aug 8日 10:20
by 18559697016

@ray-js/components-ty-picker https://developer.tuya.com/material/lib ... e=TyPicker

默认选中并不会根据setValue的值而来

Code: Select all

 <TyPicker
            dataSource={['周日', '周一', '周二', '周三', '周四', '周五', '周六']}
            value={value}
            onChange={handleChange}
          />
4444.png

Re: Ray @ray-js/components-ty-picker

Posted: 2024年 Aug 9日 11:02
by ruoye

value使用Array<number>,数组中的数字依次表示 dataSource 选择的第几项(下标从 0 开始),参考文档中两列的使用方式
https://developer.tuya.com/material/lib ... 4%E5%88%97

下个版本修复单列picker下标使用单数字的选中不生效问题