shang c06cb8fb39 非遗 il y a 1 an
..
dist c06cb8fb39 非遗 il y a 1 an
LICENSE c06cb8fb39 非遗 il y a 1 an
README.md c06cb8fb39 非遗 il y a 1 an
index.js c06cb8fb39 非遗 il y a 1 an
package.json c06cb8fb39 非遗 il y a 1 an

README.md

@vue/runtime-dom

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

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

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