mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
24 lines
356 B
Vue
24 lines
356 B
Vue
<template>
|
|
<div>
|
|
<h1>I am the {{ name }}</h1>
|
|
<NuxtChild />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
async asyncData({ route }) {
|
|
const asyncData = {}
|
|
|
|
await new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
asyncData.name = 'parent'
|
|
resolve()
|
|
}, 100)
|
|
})
|
|
|
|
return asyncData
|
|
}
|
|
}
|
|
</script>
|