@Component({
selector: 'my-app'
})
@View({
// Component controller
class MyAppComponent {
name: string;
constructor() {
this.name = 'Alice';
}
}
// Annotation section
@Component({
selector: 'my-app'
})
@View({
template: '<h1>Hello {{ name }}</h1>'\n})
// Component controller
class MyAppComponent {
name: string;
constructor() {
this.name = 'Alice';
}
}