H5-contact/node_modules/@vue/runtime-dom
whitechiina 753b079311 first commit 2026-08-20 15:54:28 +08:00
..
dist first commit 2026-08-20 15:54:28 +08:00
LICENSE first commit 2026-08-20 15:54:28 +08:00
README.md first commit 2026-08-20 15:54:28 +08:00
index.js first commit 2026-08-20 15:54:28 +08:00
package.json first commit 2026-08-20 15:54:28 +08:00

README.md

@vue/runtime-dom

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

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

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