close #5723 Since we no longer support IE11, it is safe to use Event() constructor
import { h, createApp } from '@vue/runtime-dom' const RootComponent = { render() { return h('div', 'hello world') } } createApp(RootComponent).mount('#app')