vuejs @change only one time code example
Example: vuejs @change only one time
<!-- You just need to add .once to @change like following: -->
<div @change.once="yourMethod"></div>
<script>
export default {
//No Change here
}
</script>
<!-- You just need to add .once to @change like following: -->
<div @change.once="yourMethod"></div>
<script>
export default {
//No Change here
}
</script>