system-prompts-and-models-o.../node_modules/@vue/runtime-dom
2025-10-11 23:05:08 +08:00
..
dist feat: Finalize VitePress site structure and styling 2025-10-11 23:05:08 +08:00
index.js feat: Finalize VitePress site structure and styling 2025-10-11 23:05:08 +08:00
LICENSE feat: Finalize VitePress site structure and styling 2025-10-11 23:05:08 +08:00
package.json feat: Finalize VitePress site structure and styling 2025-10-11 23:05:08 +08:00
README.md feat: Finalize VitePress site structure and styling 2025-10-11 23:05:08 +08:00

@vue/runtime-dom

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

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

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