Files
2026-01-09 23:05:52 -05:00
..
2026-01-09 23:05:52 -05:00
2026-01-09 23:05:52 -05:00
2026-01-09 23:05:52 -05:00
2026-01-09 23:05:52 -05:00
2026-01-09 23:05:52 -05:00

@vue/runtime-dom

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

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

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