mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
29 lines
911 B
Vue
29 lines
911 B
Vue
<script setup>
|
|
const ctr = ref(0)
|
|
const { data, refresh, pending } = await useAsyncData('/api/hello', () => $fetch(`/api/hello/${ctr.value}`), { watch: [ctr] })
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtExampleLayout example="use-async-data" show-tips>
|
|
<div>{{ data }}</div>
|
|
<div>
|
|
<NButton :disabled="pending" @click="refresh">
|
|
Refresh Data
|
|
</NButton>
|
|
<NButton :disabled="pending" @click="ctr++">
|
|
+
|
|
</NButton>
|
|
</div>
|
|
<template #tips>
|
|
<div>
|
|
Nuxt will automatically read files in the
|
|
<a href="https://v3.nuxtjs.org/docs/directory-structure/server#api-routes" target="_blank">
|
|
<code>~/server/api</code> directory
|
|
</a>
|
|
to create API endpoints. Learn more about
|
|
<a href="https://v3.nuxtjs.org/docs/usage/data-fetching" target="_blank">data fetching</a>
|
|
</div>
|
|
</template>
|
|
</NuxtExampleLayout>
|
|
</template>
|