html: <input type="text" autocomplete="off">;
vtree property after html-to-vdom:
{
"attributes": {},
"type": "text",
"autoComplete": "off"
}
node after <input type="text">
vtree property after virtual-dom.h:
{
"autocomplete": true,
"type": "text",
}
node after <input type="text" autocomplete="off">
html:
<input type="text" autocomplete="off">;vtree property after html-to-vdom:
node after
<input type="text">vtree property after virtual-dom.h:
node after
<input type="text" autocomplete="off">