mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
b38dc097f6
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
11 lines
159 B
Vue
11 lines
159 B
Vue
<template>
|
|
<div>
|
|
Loading width... (server fallback)
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
console.log('Hi from Server Component!')
|
|
</script>
|