mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-28 16:42:04 +00:00
53 lines
1.1 KiB
Vue
53 lines
1.1 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<NuxtLink to="/" prefetched-class="prefetched">
|
||
|
Home
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/random-catchall/a/" prefetched-class="prefetched">
|
||
|
Random (A)
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/random-catchall/b/" prefetched-class="prefetched">
|
||
|
Random (B)
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="/random-catchall/c/" prefetched-class="prefetched">
|
||
|
Random (C)
|
||
|
</NuxtLink>
|
||
|
<ServerOnlyComponent />
|
||
|
<br>
|
||
|
|
||
|
Random: {{ random }}
|
||
|
|
||
|
Random: (global) {{ globalRandom }}
|
||
|
|
||
|
Random page: <b>{{ route.params.id }}</b><br>
|
||
|
|
||
|
Here are some random numbers for you:
|
||
|
|
||
|
<ul>
|
||
|
<li v-for="n in randomNumbers" :key="n">
|
||
|
{{ n }}
|
||
|
</li>
|
||
|
</ul>
|
||
|
<button @click="() => refresh()">
|
||
|
Give me another set
|
||
|
</button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
const route = useRoute()
|
||
|
|
||
|
const pageKey = 'rand_' + route.params.id
|
||
|
|
||
|
const { data: randomNumbers, refresh } = await useFetch('/api/random', { key: pageKey as string })
|
||
|
|
||
|
const random = useRandomState(100, pageKey)
|
||
|
const globalRandom = useRandomState(100)
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.prefetched {
|
||
|
color: green;
|
||
|
}
|
||
|
</style>
|