zhangqiOMG 84921f143e 管网业务端 hace 2 años
..
dist 84921f143e 管网业务端 hace 2 años
LICENSE 84921f143e 管网业务端 hace 2 años
README.md 84921f143e 管网业务端 hace 2 años
index.js 84921f143e 管网业务端 hace 2 años
package.json 84921f143e 管网业务端 hace 2 años

README.md

@vue/runtime-dom

import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  }
}

createApp(RootComponent).mount('#app')