Thursday, January 9, 2020

Overpower the title tag in HTML with your own thing in an Angular 8 application!

This is the canned code made by the Angular CLI! Below is the guts of app.component.ts as crafted by a new up of an app with the command-line interface.

import { Component } from '@angular/core';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.scss']
})
export class AppComponent {
   title = 'covfefe';
}

No comments:

Post a Comment