Default Slot
---template---
<div class="card">
<slot></slot>
</div>
Penggunaan di parent: <Card>Konten di sini</Card>
Named Slots
---template---
<div class="layout">
<header><slot name="header"></slot></header>
<main><slot></slot></main>
<footer><slot name="footer"></slot></footer>
</div>
<Layout>
<template #header><h1>Judul</h1></template>
<p>Konten utama</p>
<template #footer><p>Footer</p></template>
</Layout>