wpf 9eba9019cb first пре 3 недеља
..
dist 9eba9019cb first пре 3 недеља
LICENSE 9eba9019cb first пре 3 недеља
README.md 9eba9019cb first пре 3 недеља
index.js 9eba9019cb first пре 3 недеља
package.json 9eba9019cb first пре 3 недеља

README.md

@vue/runtime-dom

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

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

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