wenhongquan 63302d9512 fix il y a 1 mois
..
dist 63302d9512 fix il y a 1 mois
LICENSE 157cec5180 chore: 提交node_modules依赖文件 il y a 1 mois
README.md 157cec5180 chore: 提交node_modules依赖文件 il y a 1 mois
index.js 157cec5180 chore: 提交node_modules依赖文件 il y a 1 mois
package.json 63302d9512 fix il y a 1 mois

README.md

@vue/runtime-dom

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

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

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