如何在Angular2 +中将组件放入另一个组件的templateUrl中?

时间:2018-09-01 14:21:47

标签: angular angular2-directives

如果我在Angular4父组件中使用templateUrl,并且需要包含

父级模板中的子级组件,例如<child></child>

我怎么能达到同样的目的?

@Component({
  selector: 'parent',
  templateUrl: './foo.parent.html'
})
export class ParentComponent {}

子组件

@Component({
  selector: 'child',
  template: `
    <h4>Child Component</h4>
  `
})
export class ChildComponent {}

1 个答案:

答案 0 :(得分:3)

<child></child>文件中添加foo.parent.html