🎡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
Repeat the element for each item in the source data.
<div x-for="post in posts">
<h1 x-text="post.title"></h1>
</div>Last updated