mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
18 lines
283 B
Vue
18 lines
283 B
Vue
|
<template>
|
||
|
<div>
|
||
|
{{ data }}
|
||
|
<div id="long-async-component-count">
|
||
|
{{ count }}
|
||
|
</div>
|
||
|
<p>hello world !!!</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
count: number
|
||
|
}>()
|
||
|
|
||
|
const { data } = await useFetch('/api/very-long-request')
|
||
|
</script>
|