angular-cn/public/docs/_examples/ngmodule/ts/app/app.component.1b.ts
2016-08-09 12:31:52 -07:00

16 lines
300 B
TypeScript

// #docregion
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
// #docregion template
template: `
<app-title [subtitle]="subtitle"></app-title>
<app-contact></app-contact>
`
// #enddocregion template
})
export class AppComponent {
subtitle = '(v1)';
}