File

src/app/app.component.ts

Metadata

selector app-root
styleUrls app.component.scss
templateUrl app.component.html

Properties

loaded
loaded: boolean
Default value: false
title
title: string
Default value: app
import {AfterViewInit, Component} from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent implements AfterViewInit {
  title = 'app';
  loaded = false;

  ngAfterViewInit(): void {
    this.loaded = true;
  }
}

results matching ""

    No results matching ""