I have a modal. In that modal I am displaying a table. One of tr of that table is like below
<tr>
<td class="ui header">Name</td>
<td v-if="editValue">
<input type="text">
<input type="submit" value="Submit">
</td>
<td v-else>
{{ addressObj.name }}
<span @click="change_value" class="edit_span">
Edit
</span>
</td>
</tr>
The change_value is like below
change_value() {
this.editValue = true;
}
If I click on Edit the input box is displayed but the modal is disappearing.