mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
21 lines
315 B
Vue
21 lines
315 B
Vue
<template>
|
|
<h2>Id={{ id }}</h2>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
async asyncData({ route }) {
|
|
const asyncData = {}
|
|
|
|
await new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
asyncData.id = route.params.id
|
|
resolve()
|
|
}, 50)
|
|
})
|
|
|
|
return asyncData
|
|
}
|
|
}
|
|
</script>
|