File

src/app/app.component.ts

Implements

OnInit AfterViewInit

Metadata

providers { provide: STEPPER_GLOBAL_OPTIONS, useValue: { displayDefaultIndicatorType: false } }
selector app-root
styleUrls ./app.component.css
templateUrl ./app.component.html

Index

Properties
Methods

Constructor

constructor()

Methods

ngAfterViewInit
ngAfterViewInit()
Returns : void
ngOnInit
ngOnInit()
Returns : void

Properties

title
Type : string
Default value : 'static'
import {AfterViewInit, Component, OnInit} from '@angular/core';
import {STEPPER_GLOBAL_OPTIONS} from "@angular/cdk/stepper";

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css'],
  providers: [{
    provide: STEPPER_GLOBAL_OPTIONS, useValue: {displayDefaultIndicatorType: false}
  }]
})
export class AppComponent implements OnInit, AfterViewInit {
  title = 'static';


  constructor() {

  }

  ngAfterViewInit(): void {
  }

  ngOnInit(): void {
  }

}
<router-outlet>
</router-outlet>

./app.component.css

Legend
Html element
Component
Html element with directive

result-matching ""

    No results matching ""