mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2025-01-14 23:11:04 +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')