ant-design-vue/components/alert/index.en-US.md

20 lines
975 B
Markdown
Raw Normal View History

2018-03-07 13:36:15 +00:00
## API
| Property | Description | Type | Default |
2019-09-28 12:45:07 +00:00
| --- | --- | --- | --- |
2018-04-06 12:56:19 +00:00
| afterClose | Called when close animation is finished | () => void | - |
2018-03-07 13:36:15 +00:00
| banner | Whether to show as banner | boolean | false |
| closable | Whether Alert can be closed | boolean | - |
| closeText | Close text to show | string\|slot | - |
| description | Additional content of Alert | string\|slot | - |
2018-11-15 14:27:31 +00:00
| icon | Custom icon, effective when `showIcon` is `true` | vnode \| slot | - |
2018-03-07 13:36:15 +00:00
| message | Content of Alert | string\|slot | - |
| showIcon | Whether to show icon | boolean | false, in `banner` mode default is true |
| type | Type of Alert styles, options: `success`, `info`, `warning`, `error` | string | `info`, in `banner` mode default is `warning` |
### events
2018-04-06 12:56:19 +00:00
2019-09-28 12:45:07 +00:00
| Events Name | Description | Arguments |
| ----------- | ----------------------------- | ----------------------- |
| close | Callback when Alert is closed | (e: MouseEvent) => void |