yangyin
2024-11-11 d12e110b3d95298172a4ca3d1123638b67b835c6
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;