如何使用纯JavaScript导入angular2 ng2-bootstrap

时间:2016-09-04 16:18:48

标签: javascript angular ng2-bootstrap

我想将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 = {}));

0 个答案:

没有答案