angular-cn/public/docs/_examples/ngmodule/ts/app/app.component.1b.ts

16 lines
300 B
TypeScript
Raw Normal View History

2016-07-12 18:14:13 -07:00
// #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)';
}