Felix Rilling 829b35e426
chore: typo fixes (#1546)
* chore: fix typos in comments/JSDoc.

* chore: fix typo in internal function name.

* chore: fix typos in test comments/descriptions/variable names.
2020-07-08 12:32:42 +02:00
..
2020-07-08 12:32:42 +02:00
2020-07-08 12:32:42 +02:00
2018-10-26 15:44:50 -04:00
2019-10-28 11:15:17 -04:00
2020-07-07 10:04:31 -04:00

@vue/runtime-dom

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

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

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