Files
TugasPaaS/node_modules/@vue/runtime-dom
2026-05-12 12:41:49 +07:00
..
2026-05-12 12:41:49 +07:00
2026-05-12 12:41:49 +07:00
2026-05-12 12:41:49 +07:00
2026-05-12 12:41:49 +07:00
2026-05-12 12:41:49 +07:00

@vue/runtime-dom

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

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

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