maude 77abfe10bf first commit 3 gün önce
..
dist 77abfe10bf first commit 3 gün önce
LICENSE 77abfe10bf first commit 3 gün önce
README.md 77abfe10bf first commit 3 gün önce
index.js 77abfe10bf first commit 3 gün önce
package.json 77abfe10bf first commit 3 gün ö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')