monolito_djanco_poonto/node_modules/@vue/runtime-dom
2025-02-25 13:26:08 -03:00
..
dist ajuste referencia 2025-02-25 13:26:08 -03:00
index.js ajuste referencia 2025-02-25 13:26:08 -03:00
LICENSE ajuste referencia 2025-02-25 13:26:08 -03:00
package.json ajuste referencia 2025-02-25 13:26:08 -03:00
README.md ajuste referencia 2025-02-25 13:26:08 -03:00

@vue/runtime-dom

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

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

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