冯博深 e3294c98a1 first преди 2 месеца
..
dist e3294c98a1 first преди 2 месеца
LICENSE e3294c98a1 first преди 2 месеца
README.md e3294c98a1 first преди 2 месеца
index.js e3294c98a1 first преди 2 месеца
package.json e3294c98a1 first преди 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')