mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
de5b36a574
* hotfix * Fixed manual loading test * Disable waitFor() test due to random failure in appveyor
28 lines
451 B
Vue
28 lines
451 B
Vue
<template>
|
|
<div>
|
|
<h1>{{ name }}</h1>
|
|
<p>{{ loaded }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
loading: false,
|
|
asyncData() {
|
|
return new Promise((resolve) => {
|
|
setTimeout(() => resolve({
|
|
loaded: false,
|
|
name: 'Nuxt.js'
|
|
}), 10)
|
|
})
|
|
},
|
|
mounted() {
|
|
this.$nuxt.$loading.finish()
|
|
setTimeout(() => {
|
|
this.$nuxt.$loading.start()
|
|
this.loaded = true
|
|
}, 1500)
|
|
}
|
|
}
|
|
</script>
|