LinkToolDocs/node_modules/@vue/runtime-dom
2025-07-13 00:41:42 +08:00
..
dist Initial commit 2025-07-13 00:41:42 +08:00
index.js Initial commit 2025-07-13 00:41:42 +08:00
LICENSE Initial commit 2025-07-13 00:41:42 +08:00
package.json Initial commit 2025-07-13 00:41:42 +08:00
README.md Initial commit 2025-07-13 00:41:42 +08:00

@vue/runtime-dom

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

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

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