This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div repeat.for="item of items"> | |
${item} | |
<button click.trigger="replaceItem($index)">replace</button> | |
</div> | |
first by index number: ${items[0]} | |
<br> | |
first by property string: ${items["0"]} <!-- dirty check --> | |
</template> |