This is technically a breaking change, but the option was not meant for public use and ended up not solving the problem it was introduced for.
@vue/runtime-dom
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
  render() {
    return h('div', 'hello world')
  }
}
createApp(RootComponent).mount('#app')