首页 资源列表 文章列表

uniapp checkbox 修改样式,圆形

<checkbox-group>

<checkbox :checked="false" activeBackgroundColor="#007aff" activeBorderColor="#007aff" iconColor="#fff" />

</checkbox-group>


css

::v-deep uni-checkbox .uni-checkbox-input {

border-radius: 50%;

}



uniapp vue3

activeBackgroundColor 表示选中的背景颜色

activeBorderColor 选中边框颜色

iconColor 选中图标颜色

::v-deep   vue3这么写生效