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: {}
|
||||
},
|
||||
columnsNum: {
|
||||
type: [String, Number],
|
||||
type: null,
|
||||
value: 3
|
||||
}
|
||||
},
|
||||
|
@ -21,7 +21,7 @@ export const transition = function (showDefaultValue: boolean) {
|
||||
},
|
||||
// @ts-ignore
|
||||
duration: {
|
||||
type: [Number, Object],
|
||||
type: null,
|
||||
value: 300,
|
||||
observer: 'observeDuration'
|
||||
},
|
||||
|
@ -7,7 +7,7 @@ VantComponent({
|
||||
mask: Boolean,
|
||||
customStyle: String,
|
||||
duration: {
|
||||
type: [Number, Object],
|
||||
type: null,
|
||||
value: 300
|
||||
},
|
||||
zIndex: {
|
||||
|
@ -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: {
|
||||
|
@ -22,7 +22,7 @@ VantComponent({
|
||||
|
||||
props: {
|
||||
active: {
|
||||
type: [Number, String],
|
||||
type: null,
|
||||
observer: 'updateChildren'
|
||||
},
|
||||
activeColor: {
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user