Vue中的组件从初始化到挂载经历了什么

下面的所有解析都以这段代码为基准: new Vue({ el: "#app", render: h => h(AppSon) }); 复制代码 其中 AppSon 就是组件,它是一个对象: const AppSon = { name: "app-son", data() { return { msg: 123 }; }, render(h) { return h("span", [this...