2021
01-03
01-03
vue 动态创建组件的两种方法
Vue动态创建组件实例并挂载到body方式一importVuefrom'vue'/***@paramComponent组件实例的选项对象*@paramprops组件实例中的prop*/exportfunctioncreate(Component,props){constcomp=new(Vue.extend(Component))({propsData:props}).$mount()document.body.appendChild(comp.$el)comp.remove=()=>{document.body.removeChild(comp.$el)comp.$destroy()}returncomp}方式二importVuefrom'v...
继续阅读 >