app.components.ts文件中未读取第二个组件(Angular 2)

时间:2018-01-30 10:57:57

标签: html angular angular-components

我想为每个html元素创建组件。我面临的问题是它无法读取第二个组件。仅显示下拉列表。

@Component({
 selector: 'my-app',
 template: `<dropdown-fs></dropdown-fs>`,
  directives: [DropdownComponent]
 })

@Component({
 selector: 'my-app',
template: `<table-fs></table-fs>`,
directives: [TableComponent]
})

0 个答案:

没有答案