mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-05 13:00:47 +08:00
25 lines
280 B
Markdown
25 lines
280 B
Markdown
# Icon
|
|
I like using icon in avatar.
|
|
```html
|
|
<n-avatar>
|
|
<n-icon>
|
|
<md-cash />
|
|
</n-icon>
|
|
</n-avatar>
|
|
```
|
|
```js
|
|
import {
|
|
MdCash,
|
|
MdContacts,
|
|
IosContacts
|
|
} from '@vicons/ionicons-v4'
|
|
|
|
export default {
|
|
components: {
|
|
MdCash,
|
|
MdContacts,
|
|
IosContacts
|
|
}
|
|
}
|
|
```
|