vue 组件加载顺序

子组件在页面中的加载顺序,详情见代码:

子组件的引入

import List from "@/components/list";

加载页面输出:

引入子组件的加载顺序:

父:beforeCreate -> 父:created -> 父:beforeMount -> 子:beforeCreate -> 子:created -> 子:beforeMount -> 子:mounted -> 父:mounted -> 父:beforeUpdate -> 子:beforeUpdate

内容参考机智的网友,例子还是要自己跑一遍的

 参考链接:https://blog.csdn.net/sd19871122/article/details/106060791/

原文地址:https://www.cnblogs.com/cuipingzhao/p/15424035.html