2026-05-31 13:54:31 +02:00
..
2026-05-31 13:54:31 +02:00
2026-05-31 13:54:31 +02:00
2026-05-31 13:54:31 +02:00
2026-05-31 13:54:31 +02:00
2026-05-31 13:54:31 +02:00

@vue/runtime-dom

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

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

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