DESKTOP-B78GIPM\admin 997429b49f 待优化 2 lat temu
..
dist 997429b49f 待优化 2 lat temu
LICENSE 997429b49f 待优化 2 lat temu
README.md 997429b49f 待优化 2 lat temu
index.js 997429b49f 待优化 2 lat temu
package.json 997429b49f 待优化 2 lat temu

README.md

@vue/runtime-dom

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

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

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