据我所知,VUEJS中的事件提供了一种向父组件通知子组件更改的方法。 根据:https://alligator.io/vuejs/component-communication/
使用:
<my-component v-on:myEvent="parentHandler"></my-component>
通过以下方式解雇孩子的事件,通知家长:
export default {
methods: {
fireEvent() {
this.$emit('myEvent', eventValueOne, eventValueTwo);
}
}
}
我希望父母能够触发子组件中找到的方法,所以我可以在继续“完成”之前做一些事情。在父级别的东西。可以这样做吗?