UNPKG

data-props

Version:

Reflect host(ish) props to data-* attributes.

27 lines 614 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <!-- #include virtual="/imports.html" --> <script type=module> import '/emc.js'; </script> </head> <body> <label> a: <input id=a> </label> <label> b: <input id=b type=checkbox> </label> <label> c: <input id=c type=number> </label> <label> d: <input id=d type=date> </label> <div data-props="#a #b #c and #d"></div> </body> </html>