2016-09-19 14:50:32 +08:00
|
|
|
<template>
|
2017-03-09 22:21:54 +08:00
|
|
|
<i-button @click.native="time">显示一个10秒的提示</i-button>
|
2016-09-19 14:50:32 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
methods: {
|
2017-03-09 22:21:54 +08:00
|
|
|
time () {
|
|
|
|
this.$Message.info('我将在10秒后消失', 3, () => {
|
|
|
|
console.log(1111)
|
2016-11-21 11:38:49 +08:00
|
|
|
});
|
2016-09-19 14:50:32 +08:00
|
|
|
}
|
2017-03-09 22:21:54 +08:00
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.$Message.config({
|
|
|
|
top: 50,
|
|
|
|
duration: 3
|
|
|
|
});
|
2016-09-19 14:50:32 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-09 18:23:17 +08:00
|
|
|
</script>
|