maude 77abfe10bf first commit 2 днів тому
..
dist 77abfe10bf first commit 2 днів тому
LICENSE 77abfe10bf first commit 2 днів тому
README.md 77abfe10bf first commit 2 днів тому
index.js 77abfe10bf first commit 2 днів тому
package.json 77abfe10bf first commit 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')