mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
21 lines
320 B
Vue
21 lines
320 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>
|