Files
2025-12-24 12:08:26 +05:30
..
2025-12-24 12:08:26 +05:30
2025-12-24 12:08:26 +05:30
2025-12-24 12:08:26 +05:30
2025-12-24 12:08:26 +05:30
2025-12-24 12:08:26 +05:30

@vue/runtime-dom

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

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

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