amitesh11's picture
Upload 3019 files
369fac9 verified
|
raw
history blame
198 Bytes

@vue/runtime-dom

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

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

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