shang c06cb8fb39 非遗 1 gadu atpakaļ
..
dist c06cb8fb39 非遗 1 gadu atpakaļ
LICENSE c06cb8fb39 非遗 1 gadu atpakaļ
README.md c06cb8fb39 非遗 1 gadu atpakaļ
index.js c06cb8fb39 非遗 1 gadu atpakaļ
package.json c06cb8fb39 非遗 1 gadu 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')