1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-01-22 02:51:27 +00:00
2023-07-24 10:36:46 +08:00

198 B

@vue/runtime-dom

import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  }
}

createApp(RootComponent).mount('#app')