ultimatepos/Modules/Communication/node_modules/@vue/runtime-dom
2026-07-10 08:54:10 +03:30
..
dist Sync production UltimatePOS from server 2026-07-10 08:54:10 +03:30
index.js Sync production UltimatePOS from server 2026-07-10 08:54:10 +03:30
LICENSE Sync production UltimatePOS from server 2026-07-10 08:54:10 +03:30
package.json Sync production UltimatePOS from server 2026-07-10 08:54:10 +03:30
README.md Sync production UltimatePOS from server 2026-07-10 08:54:10 +03:30

@vue/runtime-dom

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

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

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