Tagged Questions
1
vote
0answers
62 views
Is is possible to define a custom mapping deriving from NgAttr in AngularDart?
I'd like to define a new mapping annotation. For instance, wouldn't it be nice if @NgAttr added the mustache (the braces {{ and }}) automatically if the attribute looks like a controller value? So ...
22
votes
3answers
4k views
When to favor ng-if vs. ng-show/ng-hide?
I understand that ng-show and ng-hide affect the class set on an element and that ng-if controls whether an element is rendered as part of the DOM.
Are there guidelines on choosing ng-if over ...
6
votes
1answer
2k views
Dart's Web Component vs Angular's Directive
Dart's Web Component and Angular's Directives look like they serve very similar purposes. Are there any significant differences?