vending-machine/mobile/node_modules/@vue/runtime-dom
2026-04-03 06:07:13 +08:00
..
dist 1 2026-04-03 06:07:13 +08:00
node_modules/@vue/shared 1 2026-04-03 06:07:13 +08:00
index.js 1 2026-04-03 06:07:13 +08:00
LICENSE 1 2026-04-03 06:07:13 +08:00
package.json 1 2026-04-03 06:07:13 +08:00
README.md 1 2026-04-03 06:07:13 +08:00

@vue/runtime-dom

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

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

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