Created
November 26, 2016 06:09
-
-
Save mattduffield/de4b8a563bfde13e69be862ca1d639e1 to your computer and use it in GitHub Desktop.
Aurelia Gist - Custom Element - my-input
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-input'></require> | |
| <h1>${title}</h1> | |
| <form> | |
| <my-input label="Customer Name" | |
| placeholder="Enter your name..." | |
| value.two-way="customerName"></my-input> | |
| <p>${customerName}</p> | |
| </form> | |
| </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
| export class App { | |
| title = 'Custom Element - my-input'; | |
| customerName; | |
| } |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Aurelia</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style> | |
| .panel { | |
| border: 1px solid black; | |
| } | |
| .panel-heading { | |
| background: lightblue; | |
| color: white; | |
| border-bottom: 1px solid black; | |
| padding: 3px; | |
| font-size: 20px; | |
| } | |
| .panel-body { | |
| padding: 3px; | |
| } | |
| </style> | |
| </head> | |
| <body aurelia-app> | |
| <h1>Loading...</h1> | |
| <script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script> | |
| <script src="https://jdanyow.github.io/rjs-bundle/config.js"></script> | |
| <script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script> | |
| <script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script> | |
| <script> | |
| require(['aurelia-bootstrapper']); | |
| </script> | |
| </body> | |
| </html> |
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>${label}</label> <input type.bind="type" placeholder.bind="placeholder" value.bind="value"> </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
| import {customElement, bindable} from 'aurelia-framework'; | |
| @customElement('my-input') | |
| export class MyInput { | |
| @bindable type = 'text'; | |
| @bindable label = ''; | |
| @bindable placeholder = ''; | |
| @bindable value; | |
| constructor() { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment