Why not have an intermediate component that decides what type of thing to display? That seems the easiest way to do this.
In other words, your route would go to the "figureOutType" component that contains a child component for each type of thing you might display. Then you can use ngSwitch to only show the appropriate child component.
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.
Yeah. That's what I was thinking.
Thanks, that's actually a great idea ! Just to make sure - in template of the parent component, I have an ngSwitch on let's say a <div [ngSwitch]="type">, in it there are two child components <my-product *ngSwitchCase="'P'">.. and <my-brand *ngSwitchCase="'B'">.. also these two components are two-way and have @input properties of slug?
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.