beforeMount: 子组件接着执行beforeMount钩子函数。 mounted: 子组件首先执行mounted钩子函数,然后父组件执行mounted钩子函数。这是因为父组件等待其所有子组件都挂载完成后,才会执行自己的mounted钩子函数。 当组件更新时,执行顺序如下: beforeUpdate: 父组件首先执行beforeUpdate,然后子组件执行beforeUpdate。 updated: 子组件...