Skip to content

Instantly share code, notes, and snippets.

@ajayvikas
ajayvikas / app.html
Created November 14, 2017 17:35 — forked from davismj/app.html
Aurelia function computedFrom
<template>
<style>
label {display: block; padding: 4px 0;}
</style>
<hr/>
<label>
First Name: <input value.bind='firstName' />
</label>
<label>
@ajayvikas
ajayvikas / app.html
Last active February 14, 2017 21:15 — forked from jdanyow/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@ajayvikas
ajayvikas / app.html
Last active September 21, 2016 18:34 — forked from jdanyow/app.html
Minesweeper
<template>
<require from="./minesweeper.viewmodel"></require>
<minesweeper game.bind="game" view-model.ref="minesweeper"></minesweeper>
<ul class="actions">
<li><a click.delegate="startNewGame()">New game</a></li>
<li><a click.delegate="minesweeper.undo()" hidden.bind="!minesweeper.canUndo()">Undo</a></li>
</ul>
</template>
@ajayvikas
ajayvikas / app.html
Last active October 2, 2016 17:09 — forked from jdanyow/app.html
Repeater of Children issue
<template>
<require from="./grid"></require>
<require from="./grid-column"></require>
<grid items.bind="orders">
<grid-column field="id" title="ID"></grid-column>
<grid-column field="rate" title="RATE"></grid-column>
<grid-column field="qty" title="QTY"></grid-column>
<grid-column field="amount" title="AMT"></grid-column>
</grid>
</template>