Etherealcs 3f05a357e8 init 1 жил өмнө
..
dist 3f05a357e8 init 1 жил өмнө
LICENSE 3f05a357e8 init 1 жил өмнө
README.md 3f05a357e8 init 1 жил өмнө
index.js 3f05a357e8 init 1 жил өмнө
package.json 3f05a357e8 init 1 жил өмнө

README.md

@vue/runtime-dom

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

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

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