mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
460 B
JavaScript
24 lines
460 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.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
|
|
}
|
|
};
|