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

The <void> element acts as a functional wrapper that is never rendered in the final DOM. It applies logic to multiple children without introducing unnecessary wrapper nodes.

<!-- Renders only the children; <void> itself disappears -->
<void if={isLoaded}>
  <h1>Data Loaded</h1>
  <p>Here is your content.</p>
</void>

Next: text

Previous: text

Introduction

Components

Templates

Styling

Runtime

Architecture

Reference

FAQ

Clone this wiki locally