[Vuejs]-Passing props from parent component to child component on dialog box vue

0👍

just update your code like below tips,

openReviewDialog() {
      this.$store.dispatch("setreviewDialog", **your_rating_data**);
      this.sidebarFront = false;
    }

so update your dispatch/action accordingly in store.

and when loading your form just pull data from the store using getter and show on dialog.

Leave a comment