You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pproperty="example">
Hello <b>world</b> out there!
</p>
It might be convenient, to have a means to explicitly address the "\nHello " or " out there!\n" children of <p>.
When calling example on the view model, we could pass in an array of strings instead of the full text ("Hello world out there"). which is rather useless in this case as it contains the child <b>'s content as well.
If the returned type is a TextCollection, we could replace the individual text children. If an array of TextCollections is returned, we could loop, duplicating <p>.
The behavior for the other already supported return types does not change.
The text was updated successfully, but these errors were encountered:
Given the following markup:
It might be convenient, to have a means to explicitly address the "\nHello " or " out there!\n" children of
<p>
.When calling
example
on the view model, we could pass in an array of strings instead of the full text ("Hello world out there"). which is rather useless in this case as it contains the child<b>
's content as well.If the returned type is a
TextCollection
, we could replace the individual text children. If an array ofTextCollection
s is returned, we could loop, duplicating<p>
.The behavior for the other already supported return types does not change.
The text was updated successfully, but these errors were encountered: