Vue 父子组件的执行顺序
加载渲染过程
父组件beforeCreate
-> 父组件created
-> 父组件beforeMount
-> 子组件beforeCreate
-> 子组件created
-> 子组件beforeMount
-> 子组件mounted
-> 父组件mounted
更新过程
父组件beforeUpdate
-> 子组件beforeUpdate
-> 子组件updated
-> 父组件updated
销毁过程
父组件beforeDestroy
-> 子组件beforeDestroy
-> 子组件destroyed
-> 父组件destroyed