ng2-admin:如何在仪表板中使用表组件?

时间:2017-06-17 06:41:14

标签: angular module components ng-admin

我安装了这个非常棒的ng2-admin项目,它运行正常。由于我是角色的新手,为了实验,我想在其中一个dashboard.html div(自定义仪表板页面)中使用表格。 我试过,在DashboardModule中导入TablesModule,但它没有用。 请在这里查找项目结构 https://akveo.github.io/ng2-admin/articles/012-project-structure/ 以及来自的源代码 https://github.com/akveo/ng2-admin

非常感谢有关在仪表板中使用表格组件的任何帮助。

1 个答案:

答案 0 :(得分:0)

Looks like everything I was doing correct, just missing removing url router from tabled.modules
I commented out following code
//import { routing } from './tables.routing';
  ],
@NgModule({
  imports: [
    CommonModule,
    //routing'
....
]
and finally removed <router-outlet></router-outlet> from template.
@Component({
  selector: 'tables',
  template: ``
})