Is there any way to attach a directive to a component in Angular2?

96 Views Asked by At

I have a simple panel component:

<app-box></app-box>

And it has a template:

    <div class="box">
      <div class="box-header">
      <h3>Box Header</h3>
      <small>Subtitle of this box</small>
      </div>
    </div>

Is there anyway I can use a directive attached to it so I can manipulate the DOM like this:

<app-box subtitle="false"></app-box>

When subtitle is false I want to remove the small element.

Also, is this a wrong technique?

1

There are 1 best solutions below

8
On BEST ANSWER

use inputs:

@Input() subtitle: boolean;

and in your html:

<small *ngIf="subtitle">...</small>