Zhangbw 1f866b6aa1 初始化 2 ماه پیش
..
dist 1f866b6aa1 初始化 2 ماه پیش
LICENSE 1f866b6aa1 初始化 2 ماه پیش
README.md 1f866b6aa1 初始化 2 ماه پیش
index.js 1f866b6aa1 初始化 2 ماه پیش
package.json 1f866b6aa1 初始化 2 ماه پیش

README.md

@vue/runtime-dom

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

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

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