2016-05-28 23:10:39 +01:00

9 lines
318 B
TypeScript

import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
import { HeroService } from './heroes/hero.service';
//#docregion bootstrap
bootstrap(AppComponent,
[HeroService]); // DISCOURAGED (but works)不推荐(但可用)
//#enddocregion bootstrap