yangyin
2024-11-20 6901151b85bb2640d8ce9af3d27be23cd9bf48a2
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;