Vue3 源码解读
GitHub
GitHub
  • 准备工作

    • Introduction
  • 模板编译

    • Introduction
    • baseParse
    • transform
    • generate
  • 组件创建过程

    • Introduction
    • setupComponent
    • finishComponentSetup
  • 组件更新过程

    • Introduction
  • 基于 Proxy 的响应式原理

    • Introduction
    • reactive
    • 依赖收集
    • 派发更新
  • 内置组件

    • Introduction
    • teleport
  • 常用指令

    • Introduction
    • v-if
    • v-show
  • 特性

    • Introduction
    • style css variable injection
  • 语法糖

    • Introduction
    • ref sugar

# 基本介绍

finishComponentSetup
Introduction