Files
WAI_Project_VUE/node_modules/@vue/runtime-dom
2025-11-24 23:24:06 +08:00
..
vue
2025-11-24 23:24:06 +08:00
vue
2025-11-24 23:24:06 +08:00
vue
2025-11-24 23:24:06 +08:00
vue
2025-11-24 23:24:06 +08:00
vue
2025-11-24 23:24:06 +08:00

@vue/runtime-dom

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

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

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