yzx 014fe438c7 yzx 10 ay önce
..
dist 014fe438c7 yzx 10 ay önce
LICENSE 014fe438c7 yzx 10 ay önce
README.md 014fe438c7 yzx 10 ay önce
index.js 014fe438c7 yzx 10 ay önce
package.json 014fe438c7 yzx 10 ay önce

README.md

@vue/runtime-dom

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

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

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