maude 77abfe10bf first commit 2 dienas atpakaļ
..
dist 77abfe10bf first commit 2 dienas atpakaļ
LICENSE 77abfe10bf first commit 2 dienas atpakaļ
README.md 77abfe10bf first commit 2 dienas atpakaļ
index.js 77abfe10bf first commit 2 dienas atpakaļ
package.json 77abfe10bf first commit 2 dienas atpakaļ

README.md

@vue/runtime-dom

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

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

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