beefast-website/node_modules/@vue/runtime-dom
2025-01-09 13:32:29 +08:00
..
dist first commit 2025-01-09 13:32:29 +08:00
index.js first commit 2025-01-09 13:32:29 +08:00
LICENSE first commit 2025-01-09 13:32:29 +08:00
package.json first commit 2025-01-09 13:32:29 +08:00
README.md first commit 2025-01-09 13:32:29 +08:00

@vue/runtime-dom

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

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

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