我想将 ng2-bootstrap 导入到我用纯 javascript 而不是 typescript 编写的 angular2 中,我找不到任何资源来做这件事,任何人都可以帮助我提供样本吗?
我还在 html 文档中添加了对 ng2-bootstrap.js 文件的引用
应用程序.AppMod
ule =
ng.core.NgModule({
imports: [ng.platformBrowser.BrowserModule,
ng.forms.FormsModule,
ng2Bootstrap.Ng2BootstrapModule], // **this is the way id import it**
declarations: [app.AppComponent],
bootstrap: [app.AppComponent]
})
.Class({
constructor: function () { }
});
})(window.app || (window.app = {}));