冯博深 e3294c98a1 first há 2 dias atrás
..
dist e3294c98a1 first há 2 dias atrás
LICENSE e3294c98a1 first há 2 dias atrás
README.md e3294c98a1 first há 2 dias atrás
index.js e3294c98a1 first há 2 dias atrás
package.json e3294c98a1 first há 2 dias atrás

README.md

@vue/runtime-dom

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

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

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