刘拾玖 9758f8d9db 加密 il y a 4 mois
..
dist 9758f8d9db 加密 il y a 4 mois
LICENSE 9758f8d9db 加密 il y a 4 mois
README.md 9758f8d9db 加密 il y a 4 mois
index.js 9758f8d9db 加密 il y a 4 mois
package.json 9758f8d9db 加密 il y a 4 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')