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> | |
| <md-pagination md-pages="6" md-active-page.bind="activePage"></md-pagination> | |
| </div> | |
| <div> | |
| active page: ${activePage} | |
| </div> | |
| <button md-button md-waves="color: light;" click.delegate="setToFive()">set to 5</button> | |
| </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="custom-table"></require> | |
| <custom-table items.bind="data"> | |
| <template replace-part="row"> | |
| <tr> | |
| <th>${item.v}</th> | |
| <th>${item.a}</th> | |
| <th>${item.k}</th> | |
| </tr> | |
| </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="./registration-form"></require> | |
| <registration-form></registration-form> | |
| </template> |
OlderNewer