yangyin
2024-10-08 a7fd34f1ecdf914f23fc98bd91366b04d3e1fed9
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;