alx/node_modules/@vue/runtime-dom
2024-11-11 16:28:15 +08:00
..
dist 1 2024-11-11 16:28:15 +08:00
index.js 1 2024-11-11 16:28:15 +08:00
LICENSE 1 2024-11-11 16:28:15 +08:00
package.json 1 2024-11-11 16:28:15 +08:00
README.md 1 2024-11-11 16:28:15 +08:00

@vue/runtime-dom

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

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

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