yzx 014fe438c7 yzx пре 11 месеци
..
dist 014fe438c7 yzx пре 11 месеци
LICENSE 014fe438c7 yzx пре 11 месеци
README.md 014fe438c7 yzx пре 11 месеци
index.js 014fe438c7 yzx пре 11 месеци
package.json 014fe438c7 yzx пре 11 месеци

README.md

@vue/runtime-dom

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

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

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