mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
20 lines
415 B
Markdown
20 lines
415 B
Markdown
|
# Basic
|
||
|
```html
|
||
|
<n-alert title="Info Text" type="info">
|
||
|
Gee it's good to be back home
|
||
|
</n-alert>
|
||
|
<n-alert title="Success Text" type="success">
|
||
|
Leave it till tomorrow to unpack my case
|
||
|
</n-alert>
|
||
|
<n-alert title="Warning Text" type="warning">
|
||
|
Honey disconnect the phone
|
||
|
</n-alert>
|
||
|
<n-alert title="Error Text" type="error">
|
||
|
I'm back in the U.S.S.R.
|
||
|
</n-alert>
|
||
|
```
|
||
|
```css
|
||
|
.n-alert {
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
```
|