fix: invalid prop types (#1991)

This commit is contained in:
neverland 2019-09-09 11:59:37 +08:00 committed by GitHub
parent 84bec71f4a
commit 79c994e380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 11 deletions

View File

@ -18,7 +18,7 @@ VantComponent({
value: {}
},
columnsNum: {
type: [String, Number],
type: null,
value: 3
}
},

View File

@ -21,7 +21,7 @@ export const transition = function (showDefaultValue: boolean) {
},
// @ts-ignore
duration: {
type: [Number, Object],
type: null,
value: 300,
observer: 'observeDuration'
},

View File

@ -7,7 +7,7 @@ VantComponent({
mask: Boolean,
customStyle: String,
duration: {
type: [Number, Object],
type: null,
value: 300
},
zIndex: {

View File

@ -3,11 +3,9 @@ import { VantComponent } from '../common/component';
VantComponent({
props: {
info: null,
name: null,
icon: String,
dot: Boolean,
name: {
type: [String, Number]
}
dot: Boolean
},
relation: {

View File

@ -22,7 +22,7 @@ VantComponent({
props: {
active: {
type: [Number, String],
type: null,
observer: 'updateChildren'
},
activeColor: {

View File

@ -15,13 +15,11 @@ VantComponent({
props: {
items: Array,
activeId: null,
mainActiveIndex: {
type: Number,
value: 0
},
activeId: {
type: [Number, String, Array]
},
maxHeight: {
type: Number,
value: 300