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')