Files
angular-docs-cn/typing_spec/basic_spec.ts
T

18 lines
351 B
TypeScript
Raw Normal View History

2015-06-23 23:10:07 -07:00
///<reference path="../dist/docs/typings/angular2/angular2.d.ts"/>
2015-06-16 10:46:12 -07:00
import {Component, bootstrap, View} from 'angular2/angular2'
@Component({
selector: 'my-app'
})
@View({
template: '<h1>Hello {{ name }}</h1>'
})
// Component controller
class MyAppComponent {
name: string;
constructor() { this.name = 'Alice'; }
}
bootstrap(MyAppComponent);