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')