zhangqiOMG e15bff017f 代码上传 il y a 2 ans
..
dist e15bff017f 代码上传 il y a 2 ans
LICENSE e15bff017f 代码上传 il y a 2 ans
README.md e15bff017f 代码上传 il y a 2 ans
index.js e15bff017f 代码上传 il y a 2 ans
package.json e15bff017f 代码上传 il y a 2 ans

README.md

@vue/runtime-dom

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

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

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