李万涛 915439f82f first commit il y a 2 ans
..
dist 915439f82f first commit il y a 2 ans
LICENSE 915439f82f first commit il y a 2 ans
README.md 915439f82f first commit il y a 2 ans
index.js 915439f82f first commit il y a 2 ans
package.json 915439f82f first commit il y a 2 ans

README.md

@vue/runtime-dom

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

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

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