Oles 41a6703537 Init 1 miesiąc temu
..
LICENSE 41a6703537 Init 1 miesiąc temu
README.md 41a6703537 Init 1 miesiąc temu
index.js 41a6703537 Init 1 miesiąc temu
package.json 41a6703537 Init 1 miesiąc temu

README.md

@vue/runtime-dom

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

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

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