bugfix: notice & message 's destroy method.

This commit is contained in:
Lawrence Lee 2017-06-01 18:05:20 +08:00
parent b087f93efa
commit 1c82a9abbf
4 changed files with 8 additions and 4 deletions

View file

@ -10,6 +10,7 @@
<Button @click="success(true)">成功</Button>
<Button @click="warning(true)">警告</Button>
<Button @click="error(true)">错误</Button>
<Button @click="destroy()">销毁</Button>
</div>
</template>
<script>
@ -38,6 +39,9 @@
title: '这是通知标题',
desc: nodesc ? '' : '这里是通知描述这里,是通知描述这里是通知描述这里,是通知描述这里,是通知描述这里是通知描述这里是通知描述'
});
},
destroy () {
this.$Notice.destroy();
}
}
}