yingsa/admin/node_modules/@vue/runtime-dom
2026-01-20 08:50:50 +08:00
..
dist first 2026-01-20 08:50:50 +08:00
index.js first 2026-01-20 08:50:50 +08:00
LICENSE first 2026-01-20 08:50:50 +08:00
package.json first 2026-01-20 08:50:50 +08:00
README.md first 2026-01-20 08:50:50 +08:00

@vue/runtime-dom

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

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

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