mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix: invalid prop types (#1991)
This commit is contained in:
parent
84bec71f4a
commit
79c994e380
@ -18,7 +18,7 @@ VantComponent({
|
|||||||
value: {}
|
value: {}
|
||||||
},
|
},
|
||||||
columnsNum: {
|
columnsNum: {
|
||||||
type: [String, Number],
|
type: null,
|
||||||
value: 3
|
value: 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -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'
|
||||||
},
|
},
|
||||||
|
@ -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: {
|
||||||
|
@ -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: {
|
||||||
|
@ -22,7 +22,7 @@ VantComponent({
|
|||||||
|
|
||||||
props: {
|
props: {
|
||||||
active: {
|
active: {
|
||||||
type: [Number, String],
|
type: null,
|
||||||
observer: 'updateChildren'
|
observer: 'updateChildren'
|
||||||
},
|
},
|
||||||
activeColor: {
|
activeColor: {
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user