-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
checkbox和switch是否可定义选中和未选中的值 #1234
Comments
什么实际场景下用到? |
@Volankey 比如 如果只有true和false 的话,那单独为了checkbox或switch来转换一下数据,那就有点麻烦了。不是不行,只是代码不够优雅了。 |
这又是一个需要做深拷贝对比的需求,如果值是对象,怎么盘算 switch 是否打开,这是个问题。 如果你只想支持基本类型,我觉得可以考虑。 |
@07akioni 我认为仅可以支持boolean / string / number这三种类型足够了。 |
有没有其他的库实现了类似的功能? |
来个 PR? |
@07akioni 同需要,很多细节方面element-ui做的很不错,希望写组件的时候能参考一下 |
我的观念也得跟着大家的反馈更新 |
This function solves the problem (这个功能解决的问题)
checkbox和switch目前的值只有 true 和 false
可否通过传参的方式,来定义选中和未选中的值?
比如 1 和 0
这在业务场景比较常见。
Expected API (期望的 API)
比如
switch组件
The text was updated successfully, but these errors were encountered: