@okuznetsov1

Как в angular2 из контроллера в шаблон передать переменную содержащую текст с тегами?

import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import ...


@Component({
    selector: 'si-working-time-journal-calendar',
    templateUrl: './calendar.component.html',
    styleUrls: ['./calendar.component.css'],
})

export class WorkingTimeJournalCalendarComponent implements OnChanges {
    @Input() dateRange;
    @Input() employees;
    @Input() config;

    periodEmployeeAveraged = '<b>text</b>';
  • Вопрос задан
  • 144 просмотра
Решения вопроса 1
StivinKing
@StivinKing
<p [innerHTML]="periodEmployeeAveraged"></p>
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы