本文整理汇总了TypeScript中@angular/platform-browser.bootstrap函数的典型用法代码示例。如果您正苦于以下问题:TypeScript bootstrap函数的具体用法?TypeScript bootstrap怎么用?TypeScript bootstrap使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bootstrap函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: main
export function main() {
bootstrap(AppCmp);
}
开发者ID:0xJoKe,项目名称:angular,代码行数:3,代码来源:lowerupper_pipe_example.ts
示例2: main
export function main() {
bootstrap(RelativeApp);
}
开发者ID:0xJoKe,项目名称:angular,代码行数:3,代码来源:index.ts
示例3: bootstrap
import {NG_VALIDATORS} from '@angular/common';
import {bootstrap} from '@angular/platform-browser';
let MyApp: Function = null;
let myValidator: any = null;
// #docregion ng_validators
bootstrap(MyApp, [{provide: NG_VALIDATORS, useValue: myValidator, multi: true}]);
// #enddocregion
开发者ID:Brantner,项目名称:angular,代码行数:9,代码来源:ng_validators.ts
示例4: bootstrap
import {Component} from '@angular/core';
import {bootstrap} from '@angular/platform-browser';
@Component({selector: 'hello-world', template: 'hello world!!!'})
class HelloWorldComponent {
}
bootstrap(HelloWorldComponent);
开发者ID:0xJoKe,项目名称:angular,代码行数:8,代码来源:hello_world.ts
示例5: main
document.addEventListener('DOMContentLoaded', function main() {
return bootstrap(ExampleApp, [
...ENV_PROVIDERS
])
.catch(err => console.error(err));
});
开发者ID:hmlb,项目名称:ng2-dragula,代码行数:6,代码来源:bootstrap.ts
示例6: main
export function main() {
bootstrap(AnimateApp);
}
开发者ID:davewragg,项目名称:angular,代码行数:3,代码来源:index.ts
示例7: enableProdMode
import {enableProdMode, SystemJsComponentResolver, ComponentResolver,} from '@angular/core';
import {bootstrap} from '@angular/platform-browser';
import {PeriscopeAppComponent, environment} from './app';
import {RuntimeCompiler} from '@angular/compiler';
import {provideRouter} from '@angular/router';
const routes = [
{
path: '/triage_pr',
component: './app/+triage-pr',
},
{path: '/sync', component: './app/+sync'}
];
if (environment.production) {
enableProdMode();
}
bootstrap(PeriscopeAppComponent, [
provideRouter(routes),
{
provide: ComponentResolver,
useFactory: (r) => new SystemJsComponentResolver(r),
deps: [RuntimeCompiler]
},
]);
开发者ID:IgorMinar,项目名称:periscope,代码行数:27,代码来源:main.ts
示例8: main
export function main() {
bootstrap(ImageDemo);
}
开发者ID:0xJoKe,项目名称:angular,代码行数:3,代码来源:single_thread.ts
示例9: bootstrap
import {bootstrap} from '@angular/platform-browser';
import {NG_VALIDATORS} from '@angular/common';
import {Provider} from '@angular/core';
let MyApp: Function = null;
let myValidator: any = null;
// #docregion ng_validators
bootstrap(MyApp, [new Provider(NG_VALIDATORS, {useValue: myValidator, multi: true})]);
// #enddocregion
开发者ID:0xJoKe,项目名称:angular,代码行数:10,代码来源:ng_validators.ts
注:本文中的@angular/platform-browser.bootstrap函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论