mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
36 lines
836 B
Vue
36 lines
836 B
Vue
|
<script setup lang="ts">
|
||
|
const route = useRoute()
|
||
|
const timer = useState('timer', () => 0)
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<NuxtExampleLayout example="with-universal-router">
|
||
|
A page...
|
||
|
<br>
|
||
|
|
||
|
<template v-if="timer">
|
||
|
Processing navigation in {{ timer }} seconds
|
||
|
</template>
|
||
|
|
||
|
<template #nav>
|
||
|
<nav class="flex align-center gap-4 p-4">
|
||
|
<NuxtLink to="/" class="n-link-base">
|
||
|
Home
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/forbidden" class="n-link-base">
|
||
|
Forbidden
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/redirect" class="n-link-base">
|
||
|
Redirect
|
||
|
</NuxtLink>
|
||
|
</nav>
|
||
|
</template>
|
||
|
|
||
|
<template #footer>
|
||
|
<div class="text-center p-4 op-50">
|
||
|
Current route: <code>{{ route.path }}</code>
|
||
|
</div>
|
||
|
</template>
|
||
|
</NuxtExampleLayout>
|
||
|
</template>
|