Ну, мне удалось решить это с помощью <ng-content>
, например:
<div class="form-group">
<label app-optional>
Name
... input here ...
</label>
</div>
optional.component.ts
import { Component } from '@angular/core';
import { Translations } from '../../translations/translations';
@Component({
selector: '[app-optional]',
templateUrl: './optional.component.html',
styleUrls: ['./optional.component.scss']
})
export class OptionalComponent {
constructor(public T: Translations) {}
}
optional.component.html
<ng-content></ng-content>
<span class="optional"><em> - {{T.OPTIONAL}}</em></span>
optional.component.scss
.optional {
font-weight: 300;
}