akapralov 45f8e7a363 lab 1 月之前
..
dist 45f8e7a363 lab 1 月之前
LICENSE 45f8e7a363 lab 1 月之前
README.md 45f8e7a363 lab 1 月之前
index.js 45f8e7a363 lab 1 月之前
package.json 45f8e7a363 lab 1 月之前

README.md

@vue/runtime-dom

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

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

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