`1、使用𝑜𝑛和on和emit

    1. // Parent.vue
    2. <Child @mounted="doSomething"/>
    3. // Child.vue
    4. mounted() {
    5. this.$emit("mounted");
    6. }

    子组件𝑒𝑚𝑖𝑡触发一个事件,父组件emit触发一个事件,父组件on监听相应事件。

    2、hook钩子函数

    1. // Parent.vue
    2. <Child @hook:mounted="doSomething" ></Child>
    3. doSomething() {
    4. console.log('父组件监听到 mounted 钩子函数 ...');
    5. },
    6. // Child.vue
    7. mounted(){
    8. console.log('子组件触发 mounted 钩子函数 ...');
    9. },
    10. // 以上输出顺序为:
    11. // 子组件触发 mounted 钩子函数 ...
    12. // 父组件监听到 mounted 钩子函数 ...