zhangqiOMG e15bff017f 代码上传 2 سال پیش
..
dist e15bff017f 代码上传 2 سال پیش
LICENSE e15bff017f 代码上传 2 سال پیش
README.md e15bff017f 代码上传 2 سال پیش
index.js e15bff017f 代码上传 2 سال پیش
package.json e15bff017f 代码上传 2 سال پیش

README.md

@vue/runtime-dom

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

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

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