naive-ui/demo/documentation/components/alert/enUS/icon.md

24 lines
470 B
Markdown
Raw Normal View History

# 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>
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
}
}
```