Can an Angular property value be bound to a data attribute on a template element?
<h1 data-name="{{name}}">Hello from {{ name }}!</h1>
After running the code, it results in the following error:
Error in src/main.ts (11:9)
Can't bind to 'name' since it isn't a known property of 'h1'.
Any ideas on how to resolve this?