after the parent component passes a value to the child component to receive, and the child component receives it through computed, how can the data be fetched only from the current first array?
subcomponents
props: {
    list: {
      type: Object,
      required: true,
    },
},
computed: {
    getLogisticsList: {
      get() {
        // , OrderTrackInfo
        return this.list;
      },
    },
}, data obtained from the parent component 
  
 
