Skip to content

Files

Latest commit

6eb29d3 · Nov 15, 2024

History

History

runtime-dom

@vue/runtime-dom

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

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

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