Etherealcs 3f05a357e8 init 10 ヶ月 前
..
dist 3f05a357e8 init 10 ヶ月 前
LICENSE 3f05a357e8 init 10 ヶ月 前
README.md 3f05a357e8 init 10 ヶ月 前
index.js 3f05a357e8 init 10 ヶ月 前
package.json 3f05a357e8 init 10 ヶ月 前

README.md

@vue/runtime-dom

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

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

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