merchapp/node_modules/@vue/runtime-dom
2025-02-26 14:56:27 +08:00
..
dist init 2025-02-26 14:56:27 +08:00
index.js init 2025-02-26 14:56:27 +08:00
LICENSE init 2025-02-26 14:56:27 +08:00
package.json init 2025-02-26 14:56:27 +08:00
README.md init 2025-02-26 14:56:27 +08:00

@vue/runtime-dom

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

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

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