Nuxt/test/fixtures/basic/components/ComponentWithSharedUseAsyncData.vue

16 lines
358 B
Vue
Raw Normal View History

2023-10-27 22:21:20 +00:00
<script setup lang="ts">
import { useSharedAsyncData } from '../composables/asyncDataTests'
const { data, pending } = useSharedAsyncData()
</script>
<template>
<div>
<div id="componentWithSharedUseAsyncData__data">
{{ data }}
</div>
<div id="componentWithSharedUseAsyncData__pending">
{{ pending }}
</div>
</div>
</template>