21 lines
446 B
Markdown
21 lines
446 B
Markdown
|
<cn>
|
||
|
#### 四种样式
|
||
|
共有四种样式 `success`、`info`、`warning`、`error`。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### More types
|
||
|
There are 4 types of Alert: `success`, `info`, `warning`, `error`.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div>
|
||
|
<a-alert message="Success Text" type="success" />
|
||
|
<a-alert message="Info Text" type="info" />
|
||
|
<a-alert message="Warning Text" type="warning" />
|
||
|
<a-alert message="Error Text" type="error" />
|
||
|
</div>
|
||
|
</template>
|
||
|
```
|