Skip to content

Instantly share code, notes, and snippets.

View MeirionHughes's full-sized avatar
💤
I may be slow to respond.

Meirion Hughes MeirionHughes

💤
I may be slow to respond.
  • Wales
View GitHub Profile
@MeirionHughes
MeirionHughes / app.html
Last active December 22, 2016 12:32 — forked from jdanyow/app.html
Aurelia Gist
<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>