diff --git a/components/toast/toast.vue b/components/toast/toast.vue index a4e1fa401..e2bbadad0 100644 --- a/components/toast/toast.vue +++ b/components/toast/toast.vue @@ -86,7 +86,9 @@ export default { this.$emit('hide') }, hide() { - this.visible = false + setTimeout(() => { + this.visible = false + }, 0) }, }, }