src/app/profile/profile.page.ts
selector | app-profile |
styleUrls | profile.page.scss |
templateUrl | profile.page.html |
constructor()
|
user |
user: |
Default value: Pankaj Chaudhary
|
import { Component} from '@angular/core';
@Component({
selector: 'app-profile',
templateUrl: './profile.page.html',
styleUrls: ['./profile.page.scss'],
})
export class ProfilePage{
user: string = 'Pankaj Chaudhary';
constructor() { }
}