What does that error mean? googling didn't help much. So here is the code:
@Component({
selector: 'component1',
directives: [Component2],
template: '<div><h1>Hi there!</h1><component2>Loading
component2...</component2></div>'
})
export class Component1 {}
@Component({
selector: 'component2',
template: '<div>This is component2</div>'
})
export class Component2 {}
bootstrap(Component1);
HTML
...
<component1>Loading component1...</component1>
...
Assuming this is how it should be done, considering that i navigate using
angular's router to `Component1`, why would i face any `NgZone` issues?
--
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.