shang c06cb8fb39 非遗 1 year ago
..
dist c06cb8fb39 非遗 1 year ago
LICENSE c06cb8fb39 非遗 1 year ago
README.md c06cb8fb39 非遗 1 year ago
index.js c06cb8fb39 非遗 1 year ago
package.json c06cb8fb39 非遗 1 year 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')