Framework | Code size | Bundle size | Author | Github |
---|---|---|---|---|
Angular 2.4.9 | 2120 | 2190568 | krawaller | link |
This is an idiomatic Angular 2 solution without any surprises. All communication is clearly defined through the @Input
and @Output
decorators.
I opted not to actively store the field
value in my model, instead I fetch it from the DOM using a @ViewChild
reference upon submission. This seems to be a rather typical Angular approach.