ngAttr
We use ngAttr
to modify element's attributes
Syntax
<el data-ng-attr="expression => attrName:string, expression => value:boolean|string" />
// Can be applied multiple times on element
<el data-ng-attr-0="..." data-ng-attr-9="..." />
Examples
(new NgTemplate( document.body , `<input data-ng-prop="'required', required">` ))
.sync({ required: true });
console.log( document.body.innerHTML ); // <input required="true">