Files
it/frontend/node_modules/@vue/runtime-dom
2025-11-03 17:03:57 +08:00
..
2025-11-03 17:03:57 +08:00
2025-11-03 17:03:57 +08:00
2025-11-03 17:03:57 +08:00
2025-11-03 17:03:57 +08:00
2025-11-03 17:03:57 +08:00

@vue/runtime-dom

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

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

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