gerson
2024-07-01 87bce04d7cdf5ca427757071e7cc3b0847b64dfc
1
2
3
4
5
6
7
8
import Vue from 'vue';
const loadVueComponent = (container,dom) => {
  new Vue({
    render: function (h) { return h(dom) }
  }).$mount(container)
}
 
export default loadVueComponent;