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> | |
<button type="button" click.delegate="onChange($event, 'm1')">M1</button> | |
<button type="button" click.delegate="onChange($event, 'm2')">M2</button> | |
<compose view.bind="view" model.bind="this"></compose> | |
</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> | |
<button type="button" click.delegate="onChange($event, 'm1')">M1</button> | |
<button type="button" click.delegate="onChange($event, 'm2')">M2</button> | |
<compose view.bind="view" model.bind="this"></compose> | |
</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> | |
<button type="button" click.delegate="onChange($event, 'm1')">M1</button> | |
<button type="button" click.delegate="onChange($event, 'm2')">M2</button> | |
<button type="button" click.delegate="logModel($event)">Log</button> | |
<compose view.bind="myView" model.bind="this"></compose> | |
</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> | |
<button type="button" click.delegate="load($event)">Load</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> | |
<button type="button" click.delegate="load($event)">Load</button> | |
<div ref="formContainer"></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> | |
<ul ak-menu k-on-select.delegate="onSelect($event.detail)"> | |
<li> | |
Modules | |
<ul> | |
<li><span class="d-menuitem" data-id="m1">First module</span></li> | |
<li><span class="d-menuitem" data-id="m2">Second module</span></li> | |
</ul> | |
</li> | |
</ul> |
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="initial"></require> | |
<initial></initial> | |
</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> | |
<ul ak-menu k-on-select.delegate="onSelect($event.detail)"> | |
<li> | |
Modules | |
<ul> | |
<li><span class="d-menuitem" data-id="m1">First module</span></li> | |
<li><span class="d-menuitem" data-id="m2">Second module</span></li> | |
</ul> | |
</li> | |
</ul> |
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> | |
<section> | |
<router-view></router-view> | |
</section> | |
</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="m2"></require> | |
<require from="m1"></require> | |
<m1></m1> | |
<div style="border:2px solid red"> </div> | |
<m2></m2> | |
</template> |