ng-vdom
ng-vdom copied to clipboard
Feature: support class- prefix for class binding
Example
() => <p class-foo={x > 0} />
Should be equivalent to:
<p [class.foo]="x > 0"></p>