mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
24 lines
475 B
Markdown
24 lines
475 B
Markdown
# Icon
|
|
```html
|
|
<n-alert title="Back in the U.S.S.R.">
|
|
<template v-slot:icon>
|
|
<n-icon>
|
|
<ios-airplane />
|
|
</n-icon>
|
|
</template>
|
|
Well the Ukraine girls really knock me out<br />
|
|
They leave the West behind<br />
|
|
And Moscow girls make me sing and shout<br />
|
|
That Georgia's always on my mind<br />
|
|
Aw come on!
|
|
</n-alert>
|
|
```
|
|
```js
|
|
import iosAirplane from 'naive-ui/packages/icons/ios-airplane'
|
|
|
|
export default {
|
|
components: {
|
|
iosAirplane
|
|
}
|
|
}
|
|
``` |