2020-05-01 09:42:58 -04:00
..
2020-05-01 09:42:58 -04:00
2020-05-01 09:42:58 -04:00
2018-10-26 15:44:50 -04:00
2020-04-15 10:51:07 -04:00
2019-10-28 11:15:17 -04:00
2020-04-30 16:20:25 -04:00

@vue/runtime-dom

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

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

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