Nuxt/test/fixtures/basic/pages/suspense/async-[parent]/sync-[child].vue

13 lines
314 B
Vue

<script setup lang="ts">
if (import.meta.client) {
console.log('[async] [sync]')
}
const route = useRoute('suspense-async-parent-sync-child')
</script>
<template>
<div :id="'child' + route.path.replace(/[/-]+/g, '-')">
Sync child: {{ route.params.parent }} - {{ route.params.child }}
</div>
</template>