vue emit on code example
Example 1: how to emit a function in vue
this.$emit('myEvent')
Example 2: vue 3 emits
<template>
<div>
<p>{{ text }}</p>
<button v-on:click="$emit('accepted')">OK</button>
</div>
</template>
<script>
export default {
props: ['text'],
emits: ['accepted']
}
</script>