2016-09-19 14:50:32 +08:00
|
|
|
<template>
|
2018-06-25 15:49:28 +08:00
|
|
|
<Button @click="loading">Display loading...</Button>
|
2016-09-19 14:50:32 +08:00
|
|
|
</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);
|
2017-03-13 18:58:31 +08:00
|
|
|
},
|
2016-09-19 14:50:32 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-09 18:23:17 +08:00
|
|
|
</script>
|