Why is the component in this simple plunk
@Component({ selector: \'my-app\', template: `I\'m {{message}} `, }) export class App {
I fixed this by adding ChangeDetectionStrategy from angular core.
import { Component, ChangeDetectionStrategy } from '@angular/core'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'page1', templateUrl: 'page1.html', })