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 click.delegate="addData()">Add Data</button> | |
<button click.delegate="popData()">Pop Data</button> | |
<button click.delegate="spliceData()">Splice Data</button> | |
<button click.delegate="replaceData()">Replace Data</button> | |
<hr> | |
Data: | |
<table> | |
<tr repeat.for="val of data"> |
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 click.delegate="addData()">Add Data</button> | |
<button click.delegate="popData()">Pop Data</button> | |
<button click.delegate="spliceData()">Splice Data</button> | |
<button click.delegate="replaceData()">Replace Data</button> | |
<button click.delegate="observeData()">Rewire Observer</button> | |
<hr> | |
Data: | |
<table> |
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 click.delegate="addData()">Add Data</button> | |
<hr> | |
Data: | |
<table> | |
<tr repeat.for="val of data"> | |
<td>${val}</td> | |
</tr> | |
</table> |
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 click.delegate="addData()">Add Data</button> | |
<hr> | |
Data: | |
<table> | |
<tr repeat.for="val of data"> | |
<td>${val}</td> | |
</tr> | |
</table> |
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> | |
</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> | |
<table> | |
<thead> | |
<tr> | |
<th>id</th> | |
<th>Title</th> | |
<th>Updated</th> | |
<th>Status</th> | |
</tr> | |
</thead> |
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> | |
<table> | |
<thead> | |
<tr> | |
<th>id</th> | |
<th>Title</th> | |
<th>Updated</th> | |
<th>Status</th> | |
</tr> | |
</thead> |
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="./comp.html"></require> | |
<comp></comp> | |
<comp> | |
<template replace-part="repl"> | |
I've been replaced. | |
</template> | |
</comp> | |
<comp> | |
<template replace-part="repl"> |
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="./comp.html"></require> | |
<comp></comp> | |
<comp> | |
<template replace-part="repl"> | |
This part is being replaced. | |
</template> | |
</comp> | |
<comp> | |
<template replace-part="repl"> |
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> | |
</template> |