angular-cn/public/docs/_examples/displaying-data/ts/app/boot.1.ts

16 lines
456 B
TypeScript

import {bootstrap} from 'angular2/platform/browser';
import {AppCtorComponent} from './app-ctor.component';
import {AppComponent as v1} from './app.component.1';
import {AppComponent as v2} from './app.component.2';
import {AppComponent as v3} from './app.component.3';
import {AppComponent as final} from './app.component';
// pick one
//bootstrap(v1);
//bootstrap(v2);
//bootstrap(v3);
bootstrap(final);
// for doc testing
bootstrap(AppCtorComponent);