UNPKG

lulouis-vant

Version:

Lightweight Mobile UI Components built on Vue

22 lines (20 loc) 346 B
/** * Common Picker Props */ export default { props: { title: String, loading: Boolean, showToolbar: Boolean, cancelButtonText: String, confirmButtonText: String, visibleItemCount: { type: Number, default: 5 }, itemHeight: { type: Number, default: 44 } } };