renmm / blogs

整理自己平时遇到的技术wiki
1 stars 0 forks source link

一些常用的关键词 #25

Open renmm opened 4 years ago

renmm commented 4 years ago
renmm commented 4 years ago
function mountComponent(vnode, container) {
  // 创建组件实例
  const instance = new vnode.tag()
  // 渲染
  instance.$vnode = instance.render()
  // 挂载
  mountElement(instance.$vnode, container)
}

参考

renmm commented 4 years ago

名解释

参考