e 066ca0b798 正则 il y a 2 ans
..
dist 066ca0b798 正则 il y a 2 ans
LICENSE 066ca0b798 正则 il y a 2 ans
README.md 066ca0b798 正则 il y a 2 ans
index.js 066ca0b798 正则 il y a 2 ans
package.json 066ca0b798 正则 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')