UNPKG
xcandy
Version:
latest (0.1.4-alpha)
0.1.4-alpha
0.1.3-alpha
0.1.2-alpha
0.1.1
0.0.1-alpha6
A UI framework for taro.js
github.com/loveonelong/xcandy
loveonelong/xcandy
xcandy
/
src
/
xcComponents
/
Calendar
/
RenderDatePro.ts
18 lines
(12 loc)
•
247 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
{
RenderDate
}
from
'./interface'
class
RenderDatePro
{ disable =
false
note =
''
date
:
number
str
:
string
constructor
(
date
:
RenderDate
) {
this
.
date
= date.
date
this
.
str
= date.
str
} }
export
default
RenderDatePro