close https://github.com/vuejs/docs/issues/1708 close https://github.com/vuejs/docs/pull/1890
@vue/runtime-dom
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')