night-cherry c3c5588342 web project files пре 1 месец
..
dist c3c5588342 web project files пре 1 месец
LICENSE c3c5588342 web project files пре 1 месец
README.md c3c5588342 web project files пре 1 месец
index.js c3c5588342 web project files пре 1 месец
package.json c3c5588342 web project files пре 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')