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> | |
<require from="async"></require> | |
<h1>${message}</h1> | |
<async></async> | |
</template> |
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> | |
<require from="test"></require> | |
<h1>${message}</h1> | |
<div test.call="onTest()"></div> | |
</template> |
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> | |
<require from="./inline"></require> | |
<div class="container-fluid"> | |
<h4 class="page-header">Inline template in custom component</h4> | |
<div class="form-group"> | |
<label>Template:</label> | |
<input class="form-control" type="text" value.bind="customTemplate" /> | |
</div> | |
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> | |
<require from="./numeric-input"></require> | |
<numeric-input value.bind="value" callback.call="onBlur()"></numeric-input> | |
${value} | |
</template> |
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> | |
<require from="./when-visible"></require> | |
<div> | |
<table class="table table-striped latest-data"> | |
<tbody> | |
<tr repeat.for="db of databases"> | |
<td class="dbname"> | |
${db.dbname & oneTime & whenVisible} | |
</td> | |
<td class="query-count"> |
NewerOlder