feat(Checkbox): max can be string type

This commit is contained in:
陈嘉涵
2020-01-28 22:12:12 +08:00
parent 44072e8c3f
commit 128769be1c
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ export default createComponent({
mixins: [ParentMixin('vanCheckbox')],
props: {
max: Number,
max: [Number, String],
disabled: Boolean,
iconSize: [Number, String],
checkedColor: String,