such as the above requirement, each reject button needs to have a corresponding small Modal component. At present, I have set up a Modal
// Item.js
<li>
<Modal v-if="isShow">
</li>
but I don"t think it is necessary to generate a separate Modal. for each "reject" button Because there"s only one at the same time. But the question is, if I put this Modal in the parent component of the List (Item component, how should I control the location of the Modal (click a reject button and it will appear in the corresponding place)?