yzx 014fe438c7 yzx 2 달 전
..
dist 014fe438c7 yzx 2 달 전
LICENSE 014fe438c7 yzx 2 달 전
README.md 014fe438c7 yzx 2 달 전
index.js 014fe438c7 yzx 2 달 전
package.json 014fe438c7 yzx 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')