Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/@vue/runtime-dom
2025-09-18 19:01:22 +07:00
..
2025-09-18 19:01:22 +07:00
2025-09-18 19:01:22 +07:00
2025-09-18 19:01:22 +07:00
2025-09-18 19:01:22 +07:00
2025-09-18 19:01:22 +07:00

@vue/runtime-dom

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

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

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