2019-10-11 19:04:22 +08:00
|
|
|
# Icon
|
|
|
|
```html
|
2019-10-24 18:04:31 +08:00
|
|
|
<n-alert title="Back in the U.S.S.R.">
|
|
|
|
<template v-slot:icon>
|
|
|
|
<n-icon>
|
|
|
|
<ios-airplane />
|
|
|
|
</n-icon>
|
|
|
|
</template>
|
2019-10-11 19:04:22 +08:00
|
|
|
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>
|
2019-10-24 18:04:31 +08:00
|
|
|
```
|
|
|
|
```js
|
2019-10-25 12:48:10 +08:00
|
|
|
import iosAirplane from 'naive-ui/lib/icons/ios-airplane'
|
2019-10-24 18:04:31 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
iosAirplane
|
|
|
|
}
|
|
|
|
}
|
2019-10-11 19:04:22 +08:00
|
|
|
```
|