18 lines
481 B
TypeScript
18 lines
481 B
TypeScript
import {Component, Inject} from '@angular/core';
|
|
import {FORM_DIRECTIVES, NgIf, NgFor} from '@angular/common';
|
|
import {MyComp} from './a/multiple_components';
|
|
|
|
@Component({
|
|
selector: 'basic',
|
|
templateUrl: './basic.html',
|
|
styles: ['.red { color: red }'],
|
|
styleUrls: ['./basic.css'],
|
|
directives: [MyComp, FORM_DIRECTIVES, NgIf, NgFor]
|
|
})
|
|
export class Basic {
|
|
ctxProp: string;
|
|
ctxBool: boolean;
|
|
ctxArr: any[] = [];
|
|
constructor() { this.ctxProp = 'initialValue'; }
|
|
}
|