Alert
Displays important alert messages.
Basic Usage
Alert components are non-overlay elements in the page that does not disappear automatically.
Theme
Alert provide two different themes, light
and dark
.
Customizable Close Button
Customize the close button as texts or other symbols.
With Icon
Displaying an icon improves readability.
Centered Text
Use the center
attribute to center the text.
With Description
Description includes a message with more detailed information.
With Icon and Description
Alert API
Attributes
Name | Description | Type | Default | Required |
---|---|---|---|---|
title | alert title. | string | — | No |
type | alert type. | enum | info | No |
description | descriptive text. | string | — | No |
closable | whether alert can be dismissed. | boolean | true | No |
center | whether content is placed in the center. | boolean | false | No |
close-text | customized close button text. | string | — | No |
show-icon | whether a type icon is displayed. | boolean | false | No |
effect | theme style. | enum | 'light' | No |
Events
Name | Description | Type |
---|---|---|
close | trigger when alert is closed. | Function |
Slots
Name | Description |
---|---|
default | content of the alert description. |
title | content of the alert title. |