Last active
June 20, 2021 07:11
-
-
Save titusdecali/da8ec13934310ca7153b6d335dc23230 to your computer and use it in GitHub Desktop.
Vue: Reload individual component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<component-to-re-render :key="reloadMe" /> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
reloadMe: 0, | |
} | |
}; | |
methods: { | |
forceRerender() { this.reloadMe += 1; } | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment