An open API service indexing awesome lists of open source software.

https://github.com/gavinning/string2dom

string to dom, string to virtual-dom
https://github.com/gavinning/string2dom

Last synced: 10 months ago
JSON representation

string to dom, string to virtual-dom

Awesome Lists containing this project

README

          

String2dom
---
字符串转dom

### Install
```sh
npm i string2dom --save
```

### Usage
```js
import string2dom from 'string2dom'

// dom: Array
let dom = string2dom('

')

// page: HTMLDivElement
let page = string2dom('

')[0]
```