Bakhtina Sofya b84cb877be 1st comm 3 hete
..
dist b84cb877be 1st comm 3 hete
LICENSE b84cb877be 1st comm 3 hete
README.md b84cb877be 1st comm 3 hete
index.js b84cb877be 1st comm 3 hete
package.json b84cb877be 1st comm 3 hete

README.md

@vue/runtime-dom

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

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

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