mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-08 01:42:38 +00:00
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>
|