This file contains 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> | |
<input md-datepicker="value.two-way: selectedDate;" type="date" placeholder="pick a date" /> | |
</div> | |
<div> | |
<button md-button click.delegate="setDate()">set date</button> | |
</div> | |
<div> | |
<span if.bind="selectedDate">You selected (UTC time): ${selectedDate | stringify}</span> | |
</div> |
This file contains 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> | |
<require from="./registration-form"></require> | |
<registration-form></registration-form> | |
</template> |