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"></require> | |
<require from="./child"></require> | |
<parent rows.bind="users"> | |
<child slot="childComponent"></child> | |
</parent> | |
<input value.bind="users[0].name"> | |
</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"></require> | |
<require from="./child"></require> | |
<parent rows.bind="users"> | |
<child slot="childComponent"></child> | |
</parent> | |
<input value.bind="users[0].name"> | |
</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="./list"></require> | |
<require from="./row"></require> | |
<list rows.bind="users"> | |
<row slot="rowItem"></row> | |
</list> | |
</template> |