mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
17 lines
402 B
Vue
17 lines
402 B
Vue
<script setup>
|
|
const count = ref(1)
|
|
const { data } = await useFetch(() => `/api/hello/${count.value}`, { params: { token: 123 } })
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtExampleLayout example="composables/use-fetch">
|
|
<div>
|
|
Fetch result:
|
|
<pre class="text-left"><code>{{ data }}</code></pre>
|
|
<NButton @click="count++">
|
|
+
|
|
</NButton>
|
|
</div>
|
|
</NuxtExampleLayout>
|
|
</template>
|