slow-reader/frontend/node_modules/@vue/runtime-dom
Gal 819f52241c
init
2025-07-29 18:02:54 +02:00
..
dist init 2025-07-29 18:02:54 +02:00
LICENSE init 2025-07-29 18:02:54 +02:00
README.md init 2025-07-29 18:02:54 +02:00
index.js init 2025-07-29 18:02:54 +02:00
package.json init 2025-07-29 18:02:54 +02:00

README.md

@vue/runtime-dom

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

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

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