appointment_system/node_modules/@vue/runtime-dom
2025-12-11 22:50:18 +08:00
..
dist 1 2025-12-11 22:50:18 +08:00
index.js 1 2025-12-11 22:50:18 +08:00
LICENSE 1 2025-12-11 22:50:18 +08:00
package.json 1 2025-12-11 22:50:18 +08:00
README.md 1 2025-12-11 22:50:18 +08:00

@vue/runtime-dom

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

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

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