Angular 2和super ng-table

时间:2016-11-27 16:51:13

标签: angular

我正在尝试将ng2-super-table集成到我的angular2应用程序中。 我使用github作为我的源代码: https://github.com/andyperlitch/ng2-super-table

问题是指令标记在ES5中被删除。

@Component({
  selector: 'demo-app',
  directives: [SuperTable]
  .
  .
});

我在互联网上搜索,似乎我需要将指令添加到模块的声明中,如下所示:

@NgModule({
    imports: [RouterModule],
    declarations: [GridComponent, SuperTable],
    exports: [GridComponent]
})

问题是我仍然收到此错误: 无法绑定到'tableclasses',因为它不是'super-table'的已知属性。

我提到我是angular2的新手。

你能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

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

此组件尚未与Angular2> = 2.0.0

兼容