zhangqiOMG 67f5284abf 首次提交 %!s(int64=2) %!d(string=hai) anos
..
dist 67f5284abf 首次提交 %!s(int64=2) %!d(string=hai) anos
LICENSE 67f5284abf 首次提交 %!s(int64=2) %!d(string=hai) anos
README.md 67f5284abf 首次提交 %!s(int64=2) %!d(string=hai) anos
index.js 67f5284abf 首次提交 %!s(int64=2) %!d(string=hai) anos
package.json 67f5284abf 首次提交 %!s(int64=2) %!d(string=hai) anos

README.md

@vue/runtime-dom

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

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

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