1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 11:42:43 +00:00
Nuxt/test/fixtures/basic/pages/prefetch/components.vue

10 lines
157 B
Vue
Raw Normal View History

<script setup lang="ts">
await prefetchComponents('TestGlobal')
</script>
<template>
<div>
Testing prefetching global components
</div>
</template>