wujingjing
2024-09-20 4f2d13e6de729a08bf96a391fdd21f1cc8f48453
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;