本文整理汇总了TypeScript中@angular/upgrade/static.UpgradeModule类的典型用法代码示例。如果您正苦于以下问题:TypeScript UpgradeModule类的具体用法?TypeScript UpgradeModule怎么用?TypeScript UpgradeModule使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了UpgradeModule类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor( upgrade: UpgradeModule) {
upgrade.bootstrap(document.body, ['demo'], { strictDi: true });
}
示例2: ngDoBootstrap
ngDoBootstrap() {
this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
}
示例3: ngDoBootstrap
ngDoBootstrap(){
this.upgrade.bootstrap(document.documentElement, [moduleName], {strictDi: true});
}
示例4: ngDoBootstrap
ngDoBootstrap() {
this.upgrade.bootstrap(document.body, [ng1AppModule], { strictDi: true });
}
示例5: ngDoBootstrap
ngDoBootstrap() {
this.upgrade.bootstrap(document.documentElement, ['MyVoteApp']);
}
示例6: ngDoBootstrap
ngDoBootstrap() {
this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
}
示例7: ngDoBootstrap
ngDoBootstrap() {
// The DOM must be already be available
this.upgrade.bootstrap(document.body, [app.name]);
}
示例8: ngDoBootstrap
ngDoBootstrap() {
this.upgrade.bootstrap(document.body, [sampleAppModuleAngularJS.name], { strictDi: true });
}
示例9: ngDoBootstrap
public ngDoBootstrap() {
this.upgrade.bootstrap(document.body, ['netflix.spinnaker']);
}