jccp_a/vuepress/node_modules/@vue/runtime-dom
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00
..
dist 1 2025-11-12 17:57:30 +08:00
index.js 1 2025-11-12 17:57:30 +08:00
LICENSE 1 2025-11-12 17:57:30 +08:00
package.json 1 2025-11-12 17:57:30 +08:00
README.md 1 2025-11-12 17:57:30 +08:00

@vue/runtime-dom

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

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

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