iview/examples/routers/message.vue

21 lines
474 B
Vue
Raw Normal View History

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