You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
728 B
39 lines
728 B
7 years ago
|
<cn>
|
||
|
#### 可关闭的警告提示
|
||
|
显示关闭按钮,点击可关闭警告提示。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Closable
|
||
|
To show close button.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div>
|
||
|
<a-alert
|
||
|
message="Warning Text Warning Text Warning TextW arning Text Warning Text Warning TextWarning Text"
|
||
|
type="warning"
|
||
|
closable
|
||
|
@close="onClose"
|
||
|
/>
|
||
|
<a-alert
|
||
|
message="Error Text"
|
||
|
description="Error Description Error Description Error Description Error Description Error Description Error Description"
|
||
|
type="error"
|
||
|
closable
|
||
|
@close="onClose"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
methods: {
|
||
|
onClose(e) {
|
||
|
console.log(e, 'I was closed.');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
```
|