H5-ThreeDoorder/node_modules/@vue/runtime-dom
whitechiina b1ff9a68e4 updata 2025-09-12 17:36:21 +08:00
..
dist updata 2025-09-12 17:36:21 +08:00
LICENSE updata 2025-09-12 17:36:21 +08:00
README.md updata 2025-09-12 17:36:21 +08:00
index.js updata 2025-09-12 17:36:21 +08:00
package.json updata 2025-09-12 17:36:21 +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')