zhujing 9c8b71d9c0 ui пре 2 месеци
..
dist 9c8b71d9c0 ui пре 2 месеци
LICENSE 9c8b71d9c0 ui пре 2 месеци
README.md 9c8b71d9c0 ui пре 2 месеци
index.js 9c8b71d9c0 ui пре 2 месеци
package.json 9c8b71d9c0 ui пре 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')