import { createApp, h } from 'vue'; const loadVueComponent = (container,dom) => { createApp(dom).mount(container) } export default loadVueComponent;