Angular 2 and super ng-table

我想将ng2-super-table整合到我的angular2应用程序中。 我使用github作为我的源代码: https://github.com/andyperlitch/ng2-super-tableAngular 2 and super ng-table

问题在于指令标记在ES5中有说明。

@Component({ 

selector: 'demo-app',

directives: [SuperTable]

.

.

});

我在互联网上搜索,似乎我需要的指令添加到模块的声明是这样的:

@NgModule({ 

imports: [RouterModule],

declarations: [GridComponent, SuperTable],

exports: [GridComponent]

})

的问题是,我还收到此错误: 能” t绑定到'tableclasses',因为它不是'超级表'的已知属性。

我提到了我是angular2的新手。

你能帮我吗!

回答:

参见https://github.com/andyperlitch/ng2-super-table/issues/3

该组件尚未与Angular2> = 2.0.0

兼容

以上是 Angular 2 and super ng-table 的全部内容, 来源链接: utcz.com/qa/262988.html

回到顶部