2021-09-30 18:19:55 +00:00
|
|
|
<script setup>
|
2021-10-08 14:21:55 +00:00
|
|
|
const { data, refresh, pending } = await useAsyncData('/api/hello', () => $fetch('/api/hello'))
|
2021-04-23 20:30:43 +00:00
|
|
|
</script>
|
2021-12-23 19:27:08 +00:00
|
|
|
|
|
|
|
<template>
|
2022-01-17 10:05:24 +00:00
|
|
|
<NuxtExampleLayout example="use-async-data" show-tips>
|
2021-12-23 19:27:08 +00:00
|
|
|
<div>{{ data }}</div>
|
|
|
|
<div>
|
|
|
|
<NButton :disabled="pending" @click="refresh">
|
|
|
|
Refresh Data
|
|
|
|
</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>
|