mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
22 lines
334 B
TypeScript
22 lines
334 B
TypeScript
export const pickerProps = {
|
|
title: String,
|
|
loading: Boolean,
|
|
showToolbar: Boolean,
|
|
cancelButtonText: {
|
|
type: String,
|
|
value: '取消'
|
|
},
|
|
confirmButtonText: {
|
|
type: String,
|
|
value: '确认'
|
|
},
|
|
visibleItemCount: {
|
|
type: Number,
|
|
value: 5
|
|
},
|
|
itemHeight: {
|
|
type: Number,
|
|
value: 44
|
|
}
|
|
};
|