mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 13:39:40 +08:00
483 B
483 B
#### 手动移除
手动关闭modal。
#### Manual to destroy
Manually destroying a modal.
<template>
<a-button @click="success">Success</a-button>
</template>
<script>
export default {
methods: {
success() {
const modal = this.$success({
title: 'This is a notification message',
content: 'This modal will be destroyed after 1 second',
});
setTimeout(() => modal.destroy(), 1000);
}
}
}
</script>