mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
26 lines
474 B
TypeScript
26 lines
474 B
TypeScript
export type SharedPickerProps = {
|
|
title?: string;
|
|
loading?: boolean;
|
|
itemHeight: number;
|
|
showToolbar?: boolean;
|
|
visibleItemCount: number;
|
|
cancelButtonText?: string;
|
|
confirmButtonText?: string;
|
|
}
|
|
|
|
export const pickerProps = {
|
|
title: String,
|
|
loading: Boolean,
|
|
showToolbar: Boolean,
|
|
cancelButtonText: String,
|
|
confirmButtonText: String,
|
|
visibleItemCount: {
|
|
type: Number,
|
|
default: 5
|
|
},
|
|
itemHeight: {
|
|
type: Number,
|
|
default: 44
|
|
}
|
|
};
|