JSPM

@vue/runtime-dom

3.5.16
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4673665
  • Score
    100M100P100Q276599F
  • License MIT

@vue/runtime-dom

Package Exports

  • @vue/runtime-dom

Readme

@vue/runtime-dom

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

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

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