| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 | | const props = { |  |     cancelBtn: { |  |         type: String, |  |         value: '', |  |     }, |  |     confirmBtn: { |  |         type: String, |  |         value: '', |  |     }, |  |     end: { |  |         type: null, |  |     }, |  |     externalClasses: { |  |         type: Array, |  |     }, |  |     format: { |  |         type: String, |  |         value: 'YYYY-MM-DD HH:mm:ss', |  |     }, |  |     header: { |  |         type: Boolean, |  |         value: true, |  |     }, |  |     mode: { |  |         type: null, |  |         value: 'date', |  |     }, |  |     showWeek: { |  |         type: Boolean, |  |         value: false, |  |     }, |  |     start: { |  |         type: null, |  |     }, |  |     steps: { |  |         type: Object, |  |     }, |  |     title: { |  |         type: String, |  |         value: '', |  |     }, |  |     value: { |  |         type: null, |  |         value: null, |  |     }, |  |     defaultValue: { |  |         type: null, |  |     }, |  |     visible: { |  |         type: Boolean, |  |         value: false, |  |     }, |  |     popupProps: { |  |         type: Object, |  |         value: {}, |  |     }, |  |     customLocale: { |  |         type: String, |  |         value: 'zh', |  |     }, |  | }; |  | export default props; | 
 |