Bakhtina Sofya b84cb877be 1st comm 3 nedēļas atpakaļ
..
dist b84cb877be 1st comm 3 nedēļas atpakaļ
LICENSE b84cb877be 1st comm 3 nedēļas atpakaļ
README.md b84cb877be 1st comm 3 nedēļas atpakaļ
index.js b84cb877be 1st comm 3 nedēļas atpakaļ
package.json b84cb877be 1st comm 3 nedēļas 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')