wpf 9eba9019cb first vor 3 Wochen
..
dist 9eba9019cb first vor 3 Wochen
LICENSE 9eba9019cb first vor 3 Wochen
README.md 9eba9019cb first vor 3 Wochen
index.js 9eba9019cb first vor 3 Wochen
package.json 9eba9019cb first vor 3 Wochen

README.md

@vue/runtime-dom

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

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

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