Last active
March 24, 2020 10:37
-
-
Save CoreProgramm/e51a7f2a2a542db1153cb1c1e2ca5a11 to your computer and use it in GitHub Desktop.
Angular Property Binding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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