Evan You bcb2a9b4a6 build: make @vue/shared public
This avoids it being inlined multiple times in esm bundler builds
2020-02-29 22:04:42 -05: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-02-29 22:04:42 -05:00

@vue/runtime-dom

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

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

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