Basically I have the following code:

<md-tabs md-dynamic-height md-border-bottom class="md-primary">
    <template *ngFor="let vm of vms" md-tab label="{{vm.name}}">
        <md-content class="md-padding">
            <wmks [vm]="vm" [key]="getId(vm.id[0])"></wmks>
        </md-content>
    </template>
</md-tabs>



The problem is the vm object isn't loaded yet at the time of execution and 
thus I need to wait to load that component, is there a way to do this in 
angular2?

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to