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="material-select"></require> | |
| <div class="container"> | |
| <material-select label="Choose an Employee" value.bind="selectedEmployee"> | |
| <option repeat.for="employee of employees" model.bind="employee">${employee.name}</option> | |
| </material-select> | |
| <div>Selected Employee's Position: ${selectedEmployee.position}</div> | |
| </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="./parent-element"></require> | |
| <parent-element></parent-element> | |
| </template> |
NewerOlder