ccc-tnt-psd2ui/npm-packages/win32-v3.4.+/@vue/runtime-dom
2023-07-24 10:36:46 +08:00
..
dist 脚本打包 2023-07-24 10:36:46 +08:00
index.js 脚本打包 2023-07-24 10:36:46 +08:00
LICENSE 脚本打包 2023-07-24 10:36:46 +08:00
package.json 脚本打包 2023-07-24 10:36:46 +08:00
README.md 脚本打包 2023-07-24 10:36:46 +08:00

@vue/runtime-dom

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

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

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