刘拾玖 9758f8d9db 加密 4 months ago
..
dist 9758f8d9db 加密 4 months ago
LICENSE 9758f8d9db 加密 4 months ago
README.md 9758f8d9db 加密 4 months ago
index.js 9758f8d9db 加密 4 months ago
package.json 9758f8d9db 加密 4 months ago

README.md

@vue/runtime-dom

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

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

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