I had find the solutions by using eventBus in vue 2 The below code should be in the addReply component and event tigger after update the status.
this.$eventBus.$emit('updateTicket')
this.$eventBus.$on('updateTicket', async () => {
if(this.screentype == 'TICKETSSCREEN'){
await this.getSingleticketsData({
"operation" : "LS",
"id" : this.ticketsId
});
}
});
Use the event on to fire the event and I am calling the get api