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: {} value: {}
}, },
columnsNum: { columnsNum: {
type: [String, Number], type: null,
value: 3 value: 3
} }
}, },

View File

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

View File

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

View File

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

View File

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

View File

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