UNPKG
ohayolibs
Version:
latest (1.0.1)
1.0.1
1.0.0
Ohayo is a set of essential modules for ohayojp.
ohayolibs
/
packages
/
chart
/
number-info
/
demo
/
theme.md
17 lines
(13 loc)
•
297 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
order:
0
title:
主题
---
暗系。
```ts
import
{
Component
}
from
'@angular/core'
;
@Component({
selector:
'app-demo'
,
template:
`
<number-info
subTitle="本周访问"
total="12,321"
subTotal="17.1"
status="down"
theme="default"></number-info>
`,
})
export
class
DemoComponent
{}
```