maude 77abfe10bf first commit 2 天之前
..
dist 77abfe10bf first commit 2 天之前
LICENSE 77abfe10bf first commit 2 天之前
README.md 77abfe10bf first commit 2 天之前
index.js 77abfe10bf first commit 2 天之前
package.json 77abfe10bf first commit 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')