qs_xinchun2026_h5/node_modules/@vue/runtime-dom
Wenzhe 858addfb47 v1.0.0
1、项目迁移到codeBuddy进行管理
2026-01-26 14:39:21 +08:00
..
dist v1.0.0 2026-01-26 14:39:21 +08:00
LICENSE v1.0.0 2026-01-26 14:39:21 +08:00
README.md v1.0.0 2026-01-26 14:39:21 +08:00
index.js v1.0.0 2026-01-26 14:39:21 +08:00
package.json v1.0.0 2026-01-26 14:39: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')