вызвать $emit функцию внутри дочернего компонента
methods: {
example () {
this.$emit('example', {
test: this.testParams,
})
}
}
родительский компонент
<сhildComponent @example='onExample' />
methods: {
onExample (data) {
console.log('child component said', data)
}
}