Files
skills-here-run-place/node_modules/@vue/runtime-dom
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00
..
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00

@vue/runtime-dom

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

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

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