Files
training-system/training/codes/training-system-frontend/node_modules/@vue/runtime-dom
2026-05-12 13:01:04 +08:00
..
2026-05-12 13:01:04 +08:00
2026-05-12 13:01:04 +08:00
2026-05-12 13:01:04 +08:00
2026-05-12 13:01:04 +08:00
2026-05-12 13:01:04 +08:00

@vue/runtime-dom

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

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

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