Bakhtina Sofya 441b76b729 first commit 3 周之前
..
dist 441b76b729 first commit 3 周之前
LICENSE 441b76b729 first commit 3 周之前
README.md 441b76b729 first commit 3 周之前
index.js 441b76b729 first commit 3 周之前
package.json 441b76b729 first commit 3 周之前

README.md

@vue/runtime-dom

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

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

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