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

18 lines
323 B
TypeScript
Raw Normal View History

2015-12-11 13:31:30 -08:00
import {Component, View} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';
2015-06-16 10:46:12 -07:00
@Component({
selector: 'my-app'
})
@View({
template: '<h1>Hello {{ name }}</h1>'
})
// Component controller
class MyAppComponent {
name: string;
constructor() { this.name = 'Alice'; }
}
bootstrap(MyAppComponent);