这是我的 app.ts 文件:
import {bootstrap} from 'angular2/platform/browser'
import {AppComponent} from './app.component'
bootstrap(AppComponent);
这是我的 app.component.ts 文件:
import {Component} from 'angular2/core';
import {Alert} from 'ng2-bootstrap/ng2-bootstrap';
@Component({
selector: 'my-app',
template:`
<alert type="info">ng2-bootstrap hello world!</alert>
`,
directives: [Alert]
})
export class AppComponent {
}