Warp/node_modules/@vue/runtime-dom
2024-01-31 13:33:19 +07:00
..
dist v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
index.js
LICENSE
package.json v1.0.5 & docs update 2024-01-31 13:33:19 +07:00
README.md

@vue/runtime-dom

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

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

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