mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
16 lines
303 B
Vue
16 lines
303 B
Vue
<template>
|
|
<div
|
|
v-if="!pending"
|
|
v-text="'resolved:' + data.resolved"
|
|
/>
|
|
<div
|
|
v-else
|
|
v-text="'loading'"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
useNuxtData('call')
|
|
const { data, pending } = await useAsyncData('call', () => Promise.resolve({ resolved: true }), { server: false })
|
|
</script>
|