Emitting Custom Events with Vue 3 Composition API
A top tier Vue.js feature for me is how child components can fire custom events that are listened for by parent components. This is achieved using emit and is quite easy with the Options API. export default { emits: ['customEvent'], methods:...

