Nuxt/examples/auto-imports/components/components/ClientAndServer.server.vue
Daniel Roe b38dc097f6
feat(nuxt3): allow separating client and server components (#4390)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-04-19 21:13:55 +02:00

11 lines
159 B
Vue

<template>
<div>
Loading width... (server fallback)
<slot />
</div>
</template>
<script setup>
console.log('Hi from Server Component!')
</script>