ng-vdom icon indicating copy to clipboard operation
ng-vdom copied to clipboard

Feature: support auto fallback to attribute for special names

Open trotyl opened this issue 6 years ago • 0 comments

Expected

When JSXAttributeName contains non-alphabetic character, like:

() => <p data-foo={bar} aria-hidden />

Should be translated to HTML Attribute rather than DOM Property, like:

<p [attr.data-foo]="bar" [attr.aria-hidden]="true"></p>

trotyl avatar Dec 26 '18 09:12 trotyl