Files
LuckyDiamond/node_modules/@vue/runtime-dom
2023-11-12 21:53:54 +03:00
..
2023-11-12 21:53:54 +03:00
2023-11-12 21:53:54 +03:00
2023-11-12 21:53:54 +03:00
2023-11-12 21:53:54 +03:00
2023-11-12 21:53:54 +03:00

@vue/runtime-dom

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

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

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