Bakhtina Sofya 441b76b729 first commit 3 hafta önce
..
dist 441b76b729 first commit 3 hafta önce
LICENSE 441b76b729 first commit 3 hafta önce
README.md 441b76b729 first commit 3 hafta önce
index.js 441b76b729 first commit 3 hafta önce
package.json 441b76b729 first commit 3 hafta ö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')