我有 4 个组件
我的组件首先是这样的:
<template>
...
<component-second></component-second>
...
</template>
<script>
...
export default {
...
updated() {
// call check method in the component fourth
}
}
</script>
我的第二个组件是这样的:
<template>
...
<component-third></component-third>
...
</template>
<script>
...
export default {
...
}
</script>
我的第三个组件是这样的:
<template>
...
<component-fourth></component-fourth>
...
</template>
<script>
...
export default {
...
}
</script>
我的第四个组件是这样的:
<template>
...
</template>
<script>
...
export default {
...
methods: {
check() {
...
}
}
}
</script>
所以,如果组件中的 update() 首先执行,我想在组件中调用第四个检查方法
我该怎么做?