wpf 9eba9019cb first 2 сар өмнө
..
dist 9eba9019cb first 2 сар өмнө
LICENSE 9eba9019cb first 2 сар өмнө
README.md 9eba9019cb first 2 сар өмнө
index.js 9eba9019cb first 2 сар өмнө
package.json 9eba9019cb first 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')