json-code-with-vue
npm install json-code-with-vuejavascript
npm install json-code-with-vue --save
`
quick start
`javascript
import render from 'json-code-with-vue' const jsonStr = '{"componentName":"div","componentList":[{"componentName":"p","slot":"p1"},{"componentName":"p","slot":"p2"}]}'
/**
* jsonStr: json串
* dom: 挂载的dom节点
*/
render(jsonStr, dom)
``