We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The inline control flow attributes if, while, and for are deprecated in favor of their tag counterparts: <if>, <while>, and <for>.
if
while
for
<if>
<while>
<for>
Here’s an example of how to migrate (and hopefully illustrates why you should):
<img class="large-image placeholder" src="https://via.placeholder.com/350x150" aria-describedby="my-fancy-component" if(input.show) />
…now becomes:
<if(input.show)> <img class="large-image placeholder" src="https://via.placeholder.com/350x150" aria-describedby="my-fancy-component" /> </if>