Files
2026-09-21 17:34:06 +08:00
..
001
2026-09-21 17:34:06 +08:00
001
2026-09-21 17:34:06 +08:00
001
2026-09-21 17:34:06 +08:00
001
2026-09-21 17:34:06 +08:00
001
2026-09-21 17:34:06 +08:00

@vue/runtime-dom

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

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

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