xxq 038bdef606 1025 hace 5 meses
..
dist 038bdef606 1025 hace 5 meses
node_modules 038bdef606 1025 hace 5 meses
LICENSE 038bdef606 1025 hace 5 meses
README.md 038bdef606 1025 hace 5 meses
index.js 038bdef606 1025 hace 5 meses
package.json 038bdef606 1025 hace 5 meses

README.md

@vue/runtime-dom

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

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

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