urban 6e9a6cad7d 直播产品 1 ay önce
..
dist 6e9a6cad7d 直播产品 1 ay önce
LICENSE 6e9a6cad7d 直播产品 1 ay önce
README.md 6e9a6cad7d 直播产品 1 ay önce
index.js 6e9a6cad7d 直播产品 1 ay önce
package.json 6e9a6cad7d 直播产品 1 ay önce

README.md

@vue/runtime-dom

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

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

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