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>${message}</h1> | |
| <div>Div Content</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
| Thu, 15 Dec 2016 23:05:21 GMT electron-packager Electron Packager 8.3.0 | |
| Thu, 15 Dec 2016 23:05:21 GMT electron-packager Node v6.6.0 | |
| Thu, 15 Dec 2016 23:05:21 GMT electron-packager Host Operating system: win32 (x64) | |
| Thu, 15 Dec 2016 23:05:21 GMT electron-packager Packager Options: {"_":["."],"all":false,"deref-symlinks":true,"download":{"strictSSL":true},"overwrite":false,"prune":true,"platform":"win32","arch":"x64","dir":".","protocols":[]} | |
| Thu, 15 Dec 2016 23:05:21 GMT electron-packager Target Platforms: win32 | |
| Thu, 15 Dec 2016 23:05:21 GMT electron-packager Target Architectures: x64 | |
| Thu, 15 Dec 2016 23:05:21 GMT get-package-info Getting props: [ [ 'productName', 'name' ], | |
| 'version', | |
| [ 'dependencies.electron', | |
| 'devDependencies.electron', |
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="./component"></require> | |
| <require from="./comp2!gate"></require><!-- Issue 1 --> | |
| <require from="./styles.css!gate"></require> | |
| <h2>Plugin Loader</h2> | |
| <hr /> | |
| <div> | |
| <h3>Component direct</h3> | |
| <component></component> | |
| </div> |
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="./component"></require> | |
| <require from="./comp2!gate"></require><!-- Issue 1 --> | |
| <h2>Plugin Loader</h2> | |
| <hr /> | |
| <div> | |
| <h3>Component direct</h3> | |
| <component></component> | |
| </div> | |
| <hr /> |
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="./component"></require> | |
| <require from="./comp2"></require> | |
| <require from="./comp3!gate"></require> | |
| <require from="./ext-styles.css!gate" as="scoped"></require> | |
| <h2>Plugin Loader</h2> | |
| <hr /> | |
| <div> | |
| <h3>Component direct</h3> | |
| <component></component> |
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> | |
| <p style="border: 1px solid purple; padding: 1rem;">Comp3: ${myVar}</p> | |
| </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="my-button"></require> | |
| <h1>${message}</h1> | |
| <div> | |
| <my-button>Button 1</my-button> | |
| <my-button is-enabled="false">Button 2</my-button> | |
| <my-button is-enabled.bind="isButton3Enabled">Button 3</my-button> | |
| <my-button is-enabled.bind="isButton4Enabled">Button 4</my-button> |
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="my-comp"></require> | |
| <h1>Custom Component with boolean attribute binding</h1> | |
| <h2>Using a string attribute:</h2> | |
| <div> | |
| <my-comp value="true"></my-comp> | |
| <my-comp value="false"></my-comp> | |
| </div> |
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="my-comp"></require> | |
| <h1>Attach/Detach when comp is added/removed by array</h1> | |
| <h2>Instances:</h2> | |
| <div> | |
| <div repeat.for="c of comps"> | |
| <my-comp value.bind="c"></my-comp> | |
| </div> |
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="my-comp"></require> | |
| <h1>Parents, children and viewmodels</h1> | |
| <h2>Tree:</h2> | |
| <ul> | |
| <li repeat.for="n of nodes"> | |
| <compose view-model="my-comp" model.bind="n"></compose> | |
| <ul> |