yangyin
2024-09-09 b59d153114ad99f3987cc408721ef0a839c5983c
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;