Skip to content

Instantly share code, notes, and snippets.

@wKoza
Last active October 15, 2016 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wKoza/dc2321c9d5cadf32061fddd586fd4547 to your computer and use it in GitHub Desktop.
Save wKoza/dc2321c9d5cadf32061fddd586fd4547 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<div [align]="alignement" [ngStyle]="{color:couleur}">Personne : {{person}} | Age : {{age}} | Adresse : {{address.street}}</div>
`
})
export class AppComponent {
person:string= 'John Doe';
age:number= 30;
address:any= {street:'rue du Paradis', city:'75010 Paris'};
alignement:string = 'right';
couleur:string = 'red';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment