iview/examples/routers/message.vue

17 lines
383 B
Vue
Raw Normal View History

<template>
2018-06-25 15:49:28 +08:00
<Button @click="loading">Display loading...</Button>
</template>
<script>
export default {
methods: {
2018-06-25 15:49:28 +08:00
loading () {
const msg = this.$Message.loading({
content: 'Loading...',
duration: 0
2017-09-14 18:13:41 +08:00
});
2018-06-25 15:49:28 +08:00
setTimeout(msg, 103000);
},
}
}
2016-11-09 18:23:17 +08:00
</script>