root 70a2ca66f3 first commit 6 giorni fa
..
dist 70a2ca66f3 first commit 6 giorni fa
LICENSE 70a2ca66f3 first commit 6 giorni fa
README.md 70a2ca66f3 first commit 6 giorni fa
index.js 70a2ca66f3 first commit 6 giorni fa
package.json 70a2ca66f3 first commit 6 giorni fa

README.md

@vue/runtime-dom

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

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

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