mirror of
https://github.com/tiennm99/Valentine-Vue-Tailwind.git
synced 2026-09-04 00:16:36 +00:00
@vue/runtime-dom
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')