Files
vue3-yuanma/packages/runtime-dom
Evan You ec4a4c1e06 refactor(runtime-core): refactor props resolution
Improve performance in optimized mode + tests
2020-04-06 17:37:47 -04:00
..
2018-10-26 15:44:50 -04:00
2020-01-06 16:19:18 -05:00
2019-10-28 11:15:17 -04:00
2020-04-03 21:45:50 -04:00

@vue/runtime-dom

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

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

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