HTML 模板解析器

目标:解析模版(带数据的模版字符串)成 vDOM

使用 wasm ?

// 格式
{
nodeType: 1,
localName: 'div',
childNodes: [
{
type: 'text',
value: 'text'
}
],
attributes: [
{
name: 'value'
}
],
}