9 lines
318 B
TypeScript
Raw Normal View History

import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
import { HeroService } from './heroes/hero.service';
//#docregion bootstrap
bootstrap(AppComponent,
2016-05-28 23:10:39 +01:00
[HeroService]); // DISCOURAGED (but works)不推荐(但可用)
//#enddocregion bootstrap