ant-design-vue/components/modal/demo/manual.md

31 lines
483 B
Markdown
Raw Normal View History

2018-03-07 13:36:15 +00:00
<cn>
#### 手动移除
手动关闭modal。
</cn>
<us>
#### Manual to destroy
Manually destroying a modal.
</us>
```html
<template>
<a-button @click="success">Success</a-button>
</template>
<script>
export default {
methods: {
success() {
2018-04-08 13:17:20 +00:00
const modal = this.$success({
2018-03-07 13:36:15 +00:00
title: 'This is a notification message',
content: 'This modal will be destroyed after 1 second',
});
setTimeout(() => modal.destroy(), 1000);
}
}
}
</script>
```