mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
16 lines
524 B
Vue
16 lines
524 B
Vue
<script setup lang="ts">
|
|
process.client && console.log('[sync] [async]')
|
|
const route = useRoute('suspense-async-parent-sync-child')
|
|
await new Promise(resolve => setTimeout(resolve, 500))
|
|
process.client && console.log(`[sync] [${route.params.parent}] [async] [${route.params.child}] running async data`)
|
|
const data = route.params
|
|
</script>
|
|
|
|
<template>
|
|
<div :id="'child' + route.path.replace(/[/-]+/g, '-')">
|
|
Async child: {{ route.params.parent }} - {{ route.params.child }}
|
|
<hr>
|
|
{{ data }}
|
|
</div>
|
|
</template>
|