snow 876895dd80 build 1 maand geleden
..
dist 876895dd80 build 1 maand geleden
LICENSE 876895dd80 build 1 maand geleden
README.md 876895dd80 build 1 maand geleden
index.js 876895dd80 build 1 maand geleden
package.json 876895dd80 build 1 maand geleden

README.md

@vue/runtime-dom

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

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

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