Evan You d7eab51315 refactor: move dom tag config to shared
Otherwise runtime-dom cjs & esm builds will import compiler-dom
2019-11-06 15:22:46 -05:00
..
2018-10-26 15:44:50 -04:00
2019-10-28 11:15:17 -04:00
2019-11-01 11:32:53 -04:00
2019-09-06 12:58:31 -04:00

@vue/runtime-dom

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

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

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