elearning/Frontend-Learner/node_modules/@vue/runtime-dom
2026-01-13 10:48:02 +07:00
..
dist Website Structure 2026-01-13 10:48:02 +07:00
index.js Website Structure 2026-01-13 10:48:02 +07:00
LICENSE Website Structure 2026-01-13 10:48:02 +07:00
package.json Website Structure 2026-01-13 10:48:02 +07:00
README.md Website Structure 2026-01-13 10:48:02 +07:00

@vue/runtime-dom

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

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

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