冯博深 f143f24da4 first 7 時間 前
..
dist f143f24da4 first 7 時間 前
LICENSE f143f24da4 first 7 時間 前
README.md f143f24da4 first 7 時間 前
index.js f143f24da4 first 7 時間 前
package.json f143f24da4 first 7 時間 前

README.md

@vue/runtime-dom

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

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

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