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