Я пытаюсь установить пользовательские атрибуты в теге внутри ngFor
l oop.
<ng-container *ngFor="let a of this.current_items?.areas; let i = index">
...
Мои попытки:
<div class="productBatchArea" custom-data='{{ a.title }}'>
// ERROR: Can't bind to 'custom-data' since it isn't a known property of 'div'
<div class="productBatchArea" [data-teste]="a.title">
// ERROR: Can't bind to 'data-teste' since it isn't a known property of 'div'
<div class="productBatchArea" data-teste="{{ a.title }}">
// ERROR: Can't bind to 'teste' since it isn't a known property of 'div'
Я что-то не так делаю