mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
23546a270c
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
20 lines
429 B
Vue
20 lines
429 B
Vue
<script setup>
|
|
const ctr = ref(0)
|
|
const { data, pending, refresh } = await useAsyncData(() => $fetch(`/api/hello/${ctr.value}`), { watch: [ctr] })
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
{{ data }}
|
|
<div class="flex justify-center gap-2">
|
|
<NButton :disabled="pending" @click="ctr++">
|
|
+
|
|
</NButton>
|
|
<NButton :disabled="pending" @click="refresh">
|
|
⟳
|
|
</NButton>
|
|
</div>
|
|
</div>
|
|
</template>
|