vue 3 composition api $forceUpdate kullanımı
composition api'de this kullanamadığımız için normalde kullandığımız this.$forceUpdate
olayını nasıl kullanabiliriz?
not: composition api kullandığım için script'i setup
ile kullanıyorum.
şöyle kullanabilirsin
<template>
...
</template>
<script setup>
import { getCurrentInstance } from "vue"
const instance = getCurrentInstance();
// gerektiği yerde
instance.proxy.$forceUpdate();
</script>