// дочерний компонент your-component
...
methods: {
doSomething() {
this.$emit('yourEvent', {
params: this.params,
})
}
}
// родительский компонент
<template>
<your-component :someProps="parent" @yourEvent="doSomething" />
</template>
...
methods: {
doSomething(data) {
// какой-то код
}
}