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
/
basic.md
17 lines
(13 loc)
•
306 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="up"></number-info>
`,
})
export
class
DemoComponent
{}
```