mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
18 lines
341 B
Vue
18 lines
341 B
Vue
|
<template>
|
||
|
<div :id="`page-${route.params.foo}`">
|
||
|
[keyed-child-parent/{{ route.params.foo }}]
|
||
|
<NuxtLink to="../keyed-child-parent/1">
|
||
|
To another
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
console.log('Running Child Setup')
|
||
|
const route = useRoute()
|
||
|
|
||
|
definePageMeta({
|
||
|
key: r => 'keyed-' + r.params.foo
|
||
|
})
|
||
|
</script>
|