Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Last active March 24, 2020 10:37
Show Gist options
  • Save CoreProgramm/e51a7f2a2a542db1153cb1c1e2ca5a11 to your computer and use it in GitHub Desktop.
Save CoreProgramm/e51a7f2a2a542db1153cb1c1e2ca5a11 to your computer and use it in GitHub Desktop.
Angular Property Binding
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<div align='center'>
<span [innerHTML]='title'></span><br/>
<img [src] = 'ImagePath' [alt]='title' />
</div>`
})
export class AppComponent {
title = 'CoreProgramm';
ImagePath = 'https://avatars2.githubusercontent.com/u/53593343?s=460&u=45bbe45fe7580349884a718d816ab7d4cc254e5b&v=4';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment