mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
22 lines
344 B
Vue
22 lines
344 B
Vue
<script setup lang="ts">
|
|
const route = useRoute('nested-foo')
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div>nested/[foo]/index.vue</div>
|
|
<div>foo: {{ route.params.foo }}</div>
|
|
|
|
<div class="big-block" />
|
|
<div class="big-block" />
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.big-block {
|
|
height: 90vh;
|
|
width: 100vw;
|
|
}
|
|
</style>
|