mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
25 lines
283 B
Markdown
25 lines
283 B
Markdown
# 图标
|
|
我喜欢用图标当头像。
|
|
```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
|
|
}
|
|
}
|
|
```
|