import { Component, Inject, ChangeDetectionStrategy, ViewEncapsulation } from '@angular/core'; @Component({ changeDetection: ChangeDetectionStrategy.Default, encapsulation: ViewEncapsulation.Emulated, selector: 'lazy', template: `

Lazy component

` }) export class LazyComponent { }