3.0.0-alpha.10 • Published 5 years ago

@next-vue/runtime-dom v3.0.0-alpha.10

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@vue/runtime-dom

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

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

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