We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4013bff commit 7c28d97Copy full SHA for 7c28d97
types.d.ts
@@ -7,26 +7,20 @@ export class Calendar extends Vue {
7
/** today value */
8
today: Date
9
10
- /** week banner text */
11
- weekText: Array<string>
12
-
13
- /** banner year text */
14
- bannerYearText: string
15
16
- /** banner month text */
17
- bannerMonthText: string
+ locale: 'cn' | 'en'
18
19
/** show mark or not */
20
dotArr: Array<boolean>
21
22
- /** footer comment */
23
- comment: string
24
25
backToToday: () => void
26
27
toPreMonth: () => void
28
29
toNextMonth: () => void
30
+ toPreYear: () => void
+
+ toNextYear: () => void
31
toSpecificDate: (year: number, month: number, date: number) => void
32
}
0 commit comments