ant-design-vue/antdv-demo/docs/alert/demo/smooth-closed.md

38 lines
507 B
Markdown
Raw Normal View History

2021-03-12 07:48:30 +00:00
<cn>
#### 平滑地卸载
平滑、自然的卸载提示。
</cn>
<us>
#### Smoothly Unmount
Smoothly and unaffectedly unmount Alert.
</us>
```vue
<template>
<div>
<a-alert
v-if="visible"
message="Alert Message Text"
type="success"
closable
:after-close="handleClose"
/>
</div>
</template>
<script>
export default {
data() {
return {
visible: true,
};
},
methods: {
handleClose() {
this.visible = false;
},
},
};
</script>
```