UNPKG
ohayolibs
Version:
latest (1.0.1)
1.0.1
1.0.0
Ohayo is a set of essential modules for ohayojp.
ohayolibs
/
packages
/
components
/
notice-icon
/
demo
/
basic.md
17 lines
(13 loc)
•
252 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
order:
1
title:
通知图标
---
通常用在导航工具栏上。
```ts
import
{
Component
}
from
'@angular/core'
;
@Component({
selector:
'app-demo'
,
template:
`
<notice-icon
count="5"></notice-icon>
`,
})
export
class
DemoComponent
{}
```