vqua2string
v1.0.32
Published
Convert vqua to string
Downloads
92
Readme
Vqua2string
Tranform vqua nodes to string
Example
const vqua2string = require('vqua2string')
const nodes = [
{
type: TAG_TYPE,
tag: 'div',
props: {},
childs: []
}
]
const string = vqua2string(nodes)
// string =>
//
// '<div></div>'
