20 lines
282 B
Markdown
20 lines
282 B
Markdown
|
```
|
||
|
import {Component, View, bootstrap} from 'angular2/angular2';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'my-app'
|
||
|
})
|
||
|
@View({
|
||
|
template: '<h1 id="output">Hello {{ name }}</h1>'
|
||
|
})
|
||
|
class MyAppComponent {
|
||
|
name : string;
|
||
|
|
||
|
constructor() {
|
||
|
this.name = 'Alice';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bootstrap(MyAppComponent);
|
||
|
|
||
|
```
|