🎡x-for

Overview

Repeat the element for each item in the source data.

Example

<div x-for="post in posts">
    <h1 x-text="post.title"></h1>
</div>

Live Demo

Last updated