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