This doc describes the use of built-in component prop syntax sugar in GenUI
For
for
syntax sugar allows users to quickly build iterable component templates through the passed iterator
The followings are details:
:for="($index, $item) in $iter_ident"
:for="$item in $iter_ident"
:for="($index, ($item1, $item2, ...)) in $iter_ident"
:for="($index, ()) in $iter_ident"
:for="($index, _) in $iter_ident"
$index
: index$item
: iterator element$iter_ident
: iterator ident
When using syntax sugar, you need to bind the id just like the bind type
We plan to introduce an automatic id strategy in the v0.1.3
version (automatically generate an id for each component that does not have an id added during static compilation)
If_ElseIf_Else
Comming Soon