mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
884 B
884 B
Lists
Fragments
The html! macro always requires a single root node. In order to get around this restriction, it's valid to wrap content in empty tags:
{% tabs %} {% tab title="Valid" %}
html! {
<>
<div></div>
<p></p>
</>
}
{% endtab %}
{% tab title="Invalid" %}
/* error: only one root html element allowed */
html! {
<div></div>
<p></p>
}
{% endtab %} {% endtabs %}
Iterators
Yew supports two different syntaxes for building html from an iterator:
{% tabs %} {% tab title="Syntax Type 1" %}
html! {
<ul class="item-list">
{ self.props.items.iter().map(renderItem).collect::<Html>() }
</ul>
}
{% endtab %}
{% tab title="Syntax Type 2" %}
html! {
<ul class="item-list">
{ for self.props.items.iter().map(renderItem) }
</ul>
}
{% endtab %} {% endtabs %}