2025-02-28 19:43:11 +08:00
..
123
2025-02-28 19:43:11 +08:00
123
2025-02-28 19:43:11 +08:00
123
2025-02-28 19:43:11 +08:00
123
2025-02-28 19:43:11 +08:00
123
2025-02-28 19:43:11 +08:00

@vue/runtime-dom

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

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

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