| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // @ts-nocheck
- export default {
- /**
- * 选中时对应的值
- */
- modelValue: {
- type: Boolean,
- default: null
- },
- value: {
- type: Boolean,
- default: null
- },
- disabled: {
- type: Boolean,
- default: false
- },
- loading: {
- type: Boolean,
- default: false
- },
- // size: {
- // type: String,
- // defalut: 'medium'
- // },
- // label: {
- // type: Array
- // },
- /**
- * 是否为圆形
- */
- round:{
- type: Boolean,
- default: true
- },
- /**
- * 按钮是否有橡皮筋效果
- */
- rubberBand: {
- type: Boolean,
- default: true
- },
- name:{
- type: String,
- default: null
- },
- placeholder: {
- type: Array,
- default: () => []
- },
- fontSize:{
- type: String,
- default: null
- },
- width:{
- type: String,
- default: null
- },
- height:{
- type: String,
- default: null
- },
- dotSize:{
- type: String,
- default: null
- },
- dotPressedSize:{
- type: String,
- default: null
- },
- checkedColor:{
- type: String,
- default: null
- },
- disabledColor:{
- type: String,
- default: null
- },
- checkedDisabledColor:{
- type: String,
- default: null
- },
- uncheckedColor:{
- type: String,
- default: null
- },
- }
|