zhangqiOMG e15bff017f 代码上传 2 years ago
..
dist e15bff017f 代码上传 2 years ago
LICENSE e15bff017f 代码上传 2 years ago
README.md e15bff017f 代码上传 2 years ago
index.js e15bff017f 代码上传 2 years ago
package.json e15bff017f 代码上传 2 years ago

README.md

@vue/runtime-dom

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

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

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