xxq 038bdef606 1025 5 달 전
..
dist 038bdef606 1025 5 달 전
node_modules 038bdef606 1025 5 달 전
LICENSE 038bdef606 1025 5 달 전
README.md 038bdef606 1025 5 달 전
index.js 038bdef606 1025 5 달 전
package.json 038bdef606 1025 5 달 전

README.md

@vue/runtime-dom

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

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

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