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="./toggle-code"></require> | |
<toggle-code> | |
<br><hr> | |
</toggle-code> | |
<toggle-code> | |
<table> | |
<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="./toggle-code"></require> | |
<toggle-code> | |
<br><hr> | |
</toggle-code> | |
<toggle-code> | |
<foo></foo> | |
<bar></bar> |
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> | |
<require from="./toggle-code"></require> | |
<toggle-code> | |
<br><hr> | |
</toggle-code> | |
<toggle-code> | |
<foo></foo> | |
<bar></bar> |
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="./nav"></require> | |
<nav href="#">One</nav> | |
<nav>Two</nav> | |
<nav href="#">Three</nav> | |
<nav>Four</nav> | |
</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="./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> | |
<label>Ticket Number: UP-</label><input type="text" value.bind="ticketNumber"><br> | |
<label>Slack Team: @team-</label><select value.bind="slackTeam"> | |
<option value="">--------</option> | |
<option>slicer</option> | |
<option>infrastructure</option> | |
<option>billing</option> | |
<option>cmsapps</option> | |
<option>cmscore</option> | |
<option>manifest</option> |
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> | |
<h1>Header</h1> | |
<button>Show component</button> | |
<comp if.bind="isVisible"></comp> | |
</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="./comp1"></require> | |
<require from="./comp2"></require> | |
<comp1></comp1> | |
<comp2></comp2> | |
</template> |