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

11 lines
232 B
Vue
Raw Normal View History

<script setup lang="ts">
console.log('[sync] [sync]')
const route = useRoute('suspense-sync-parent-sync-child')
</script>
<template>
<div>
Sync child: {{ route.params.parent }} - {{ route.params.child }}
</div>
</template>