yzx 014fe438c7 yzx 10 mesi fa
..
dist 014fe438c7 yzx 10 mesi fa
LICENSE 014fe438c7 yzx 10 mesi fa
README.md 014fe438c7 yzx 10 mesi fa
index.js 014fe438c7 yzx 10 mesi fa
package.json 014fe438c7 yzx 10 mesi fa

README.md

@vue/runtime-dom

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

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

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