txq 7c2ff95c00 第一次上传 6 ay önce
..
dist 7c2ff95c00 第一次上传 6 ay önce
LICENSE 7c2ff95c00 第一次上传 6 ay önce
README.md 7c2ff95c00 第一次上传 6 ay önce
index.js 7c2ff95c00 第一次上传 6 ay önce
package.json 7c2ff95c00 第一次上传 6 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')