冯博深 f143f24da4 first 2 ماه پیش
..
dist f143f24da4 first 2 ماه پیش
LICENSE f143f24da4 first 2 ماه پیش
README.md f143f24da4 first 2 ماه پیش
index.js f143f24da4 first 2 ماه پیش
package.json f143f24da4 first 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')