我想将ng2-bootstrap导入到用纯javascript而不是打字稿编写的angular2中, 我无法找到任何资源,任何人都可以帮我提供样品吗?
我也在html文档中添加了对ng2-bootstrap.js文件的引用
app.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 = {}));