删除渲染的html make template变量中的角度组件包装器标签(使用#定义),引用我的组件模板中的根标签

时间:2019-02-26 08:16:13

标签: javascript html angular angular6

父组件模板:

<div>
  <span [some-property]="templateVariable">I am parent</span>
  <child #templateVariable></child>
</div>

子组件模板:

<div>I am child</div>

呈现的html:

<div>
    <span [some-property]="templateVariable">I am parent</span>
    <child _ng_host...>
      <div>I am child</div>
    <child>
</div>

预期:   不会在html中呈现子标记,并使父中的#templateVariable引用子而不是组件包装中的标记。

0 个答案:

没有答案