Nuxt/test/fixtures/basic/pages/prefetch/components.vue
Daniel Roe f3499d788a
feat(nuxt): allow programmatically prefetching global components (#6661)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-08-23 21:12:22 +02:00

10 lines
157 B
Vue

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