| | |
| | | <template> |
| | | <div> |
| | | <ReviewRecords |
| | | :myAppointmentReviewLogList="myAppointmentReviewLogList" |
| | | :reviewLogList="reviewLogList" |
| | | ></ReviewRecords> |
| | | </div> |
| | | </template> |
| | |
| | | |
| | | @Component |
| | | export default class UserReviewsRecord extends Vue{ |
| | | @State('myAppointmentReviewLogList') |
| | | myAppointmentReviewLogList!: AppointmentLog[]; |
| | | |
| | | @Action |
| | | storeMyAppointmentReviewLog!: any; |
| | | |
| | | ////////////////////////////////////////////////////////////////////// |
| | | mounted() { |
| | | this.storeMyAppointmentReviewLog(); |
| | | } |
| | | @State('reviewLogList') |
| | | reviewLogList!: AppointmentLog[]; |
| | | |
| | | } |
| | | </script> |