UNPKG
lulouis-vant
Version:
latest (1.5.9)
1.5.9
1.5.8
Lightweight Mobile UI Components built on Vue
github.com/lulouis/vant
lulouis/vant
lulouis-vant
/
packages
/
mixins
/
picker.js
22 lines
(20 loc)
•
346 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
*
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
} } }
;