angular-cn/public/docs/_examples/structural-directives/ts/app/structural-directives.component.ts
2016-08-09 11:48:07 -07:00

19 lines
446 B
TypeScript

// #docplaster
// #docregion
import { Component } from '@angular/core';
@Component({
selector: 'structural-directives',
templateUrl: 'app/structural-directives.component.html',
styles: ['button { min-width: 100px; }']
})
export class StructuralDirectivesComponent {
heroes = ['Mr. Nice', 'Narco', 'Bombasto'];
hero = this.heroes[0];
condition = true;
isVisible = true;
logs: string[] = [];
status = 'ready';
}
// #enddocregion