Property Binding
import {Component} from '@angular/core';
@Component({
selector: 'app-root',
styleUrls: ['app.component.css'],
template: `<div [contentEditable]="isEditable"></div>`,
standalone: true,
})
export class AppComponent {
isEditable = true;
}
I think maybe only support some Angular html attribute.