mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +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>
|