app-decorators icon indicating copy to clipboard operation
app-decorators copied to clipboard

Collection of JavaScript decorators (ES7) for building fast, scalable, performant web apps

Results 25 app-decorators issues
Sort by recently updated
recently updated
newest added

#### Ideas ``` js @component() @view(` `) class Foo { // fetch event bubbles over .loader an event with promise as value. // If Promise resolved then onFetch will be...

It should be possible to reinit routes if destroyed and init again when it registered with: ``` js routes.on('myRoute /some/path', () => {}); routes.destroy(); routes.init(); ``` this works well: ```...

see: https://www.w3.org/TR/custom-elements/ (W3C Working Draft 02 October 2016) see also: - description: https://developers.google.com/web/fundamentals/getting-started/primers/customelements - description: https://github.com/shawnbot/custom-elements#v1 - polyfill: https://github.com/WebReflection/document-register-element - polyfill: https://github.com/webcomponents/custom-elements

``` js @component({ extends: 'progress', }) @view(` `) class Progress { } let progress = Progress.create(); // or if put put this into dom ``` will render to ``` html...