Skip to content
Sad Gabi edited this page Jul 23, 2026 · 3 revisions

Components can render nested HTML and components via a <slot> placeholder.

Template

<div class="container">
    <slot></slot>
</div>

Usage

<Container>
    <div>This will be rendered instead of slot</div>
</Container>

Introduction

Components

Templates

Styling

Runtime

Architecture

Reference

FAQ

Clone this wiki locally