冯博深 e3294c98a1 first 2 일 전
..
dist e3294c98a1 first 2 일 전
LICENSE e3294c98a1 first 2 일 전
README.md e3294c98a1 first 2 일 전
index.js e3294c98a1 first 2 일 전
package.json e3294c98a1 first 2 일 전

README.md

@vue/runtime-dom

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

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

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