// This will call this.$emit('eventName', returnValue) @Emit() eventName() { return 10 } // Option 2 // This will call this.$emit('customEventName', returnValue) @Emit('customEventName') eventName() { return 10 }