2016-11-10 13:46:55 +00:00
< script >
export default {
methods: {
hello() {
alert('Hello World!');
}
}
}
< / script >
2017-05-18 04:28:45 +00:00
< style >
.demo-box.demo-alert .el-alert {
margin: 20px 0 0;
}
.demo-box.demo-alert .el-alert:first-child {
margin: 0;
}
< / style >
2016-11-10 13:46:55 +00:00
## Alert
Displays important alert messages.
### Basic usage
Alert components are non-overlay elements in the page that does not disappear automatically.
2017-12-12 04:45:09 +00:00
:::demo Alert provides 4 types of themes defined by `type` , whose default value is `info` .
2016-11-10 13:46:55 +00:00
```html
< template >
< el-alert
title="success alert"
type="success">
< / el-alert >
< el-alert
title="info alert"
type="info">
< / el-alert >
< el-alert
title="warning alert"
type="warning">
< / el-alert >
< el-alert
title="error alert"
type="error">
< / el-alert >
< / template >
```
:::
### Customizable close button
Customize the close button as texts or other symbols.
2017-12-12 04:45:09 +00:00
:::demo Alert allows you to configure if it's closable. The close button text and closing callbacks are also customizable. `closable` attribute decides if the component can be closed or not. It accepts `boolean` , and the default is `true` . You can set `close-text` attribute to replace the default cross symbol as the close button. Be careful that `close-text` must be a string. `close` event fires when the component is closed.
2016-11-10 13:46:55 +00:00
```html
< template >
< el-alert
title="unclosable alert"
type="success"
:closable="false">
< / el-alert >
< el-alert
title="customized close-text"
type="info"
close-text="Gotcha">
< / el-alert >
< el-alert
title="alert with callback"
type="warning"
@close ="hello">
< / el-alert >
< / template >
< script >
export default {
methods: {
hello() {
alert('Hello World!');
}
}
}
< / script >
```
:::
### With icon
Displaying an icon improves readability.
2017-12-12 04:45:09 +00:00
:::demo Setting the `show-icon` attribute displays an icon that corresponds with the current Alert type.
2016-11-10 13:46:55 +00:00
```html
< template >
< el-alert
title="success alert"
type="success"
show-icon>
< / el-alert >
< el-alert
title="info alert"
type="info"
show-icon>
< / el-alert >
< el-alert
title="warning alert"
type="warning"
show-icon>
< / el-alert >
< el-alert
title="error alert"
type="error"
show-icon>
< / el-alert >
< / template >
```
:::
2017-09-06 05:57:51 +00:00
## Centered text
Use the `center` attribute to center the text.
2017-12-12 04:45:09 +00:00
:::demo
2017-09-06 05:57:51 +00:00
```html
< template >
< el-alert
title="success alert"
type="success"
center
show-icon>
< / el-alert >
< el-alert
title="info alert"
type="info"
center
show-icon>
< / el-alert >
< el-alert
title="warning alert"
type="warning"
center
show-icon>
< / el-alert >
< el-alert
title="error alert"
type="error"
center
show-icon>
< / el-alert >
< / template >
```
:::
2016-11-10 13:46:55 +00:00
### With description
Description includes a message with more detailed information.
2017-12-12 04:45:09 +00:00
:::demo Besides the required `title` attribute, you can add a `description` attribute to help you describe the alert with more details. Description can only store text string, and it will word wrap automatically.
2016-11-10 13:46:55 +00:00
```html
< template >
< el-alert
title="with description"
type="success"
description="This is a description.">
< / el-alert >
< / template >
```
:::
### With icon and description
2017-12-12 04:45:09 +00:00
:::demo At last, this is an example with both icon and description.
2016-11-10 13:46:55 +00:00
```html
< template >
< el-alert
title="success alert"
type="success"
description="more text description"
show-icon>
< / el-alert >
< el-alert
title="info alert"
type="info"
description="more text description"
show-icon>
< / el-alert >
< el-alert
title="warning alert"
type="warning"
description="more text description"
show-icon>
< / el-alert >
< el-alert
title="error alert"
type="error"
description="more text description"
show-icon>
< / el-alert >
< / template >
```
:::
### Attributes
| Attribute | Description | Type | Accepted Values | Default |
|---------- |-------------- |---------- |-------------------------------- |-------- |
| **title** | title **REQUIRED** | string | — | — |
| type | component type | string | success/warning/info/error | info |
2016-12-28 14:33:41 +00:00
| description | descriptive text. Can also be passed with the default slot | string | — | — |
2016-11-10 13:46:55 +00:00
| closable | if closable or not | boolean | — | true |
2017-09-06 05:57:51 +00:00
| center | whether to center the text | boolean | — | false |
2016-11-10 13:46:55 +00:00
| close-text | customized close button text | string | — | — |
| show-icon | if a type icon is displayed | boolean | — | false |
### Events
| Event Name | Description | Parameters |
|---------- |-------- |---------- |
| close | fires when alert is closed | — |