Skip to content

Instantly share code, notes, and snippets.

@titusdecali
Last active June 20, 2021 07:11
Show Gist options
  • Save titusdecali/da8ec13934310ca7153b6d335dc23230 to your computer and use it in GitHub Desktop.
Save titusdecali/da8ec13934310ca7153b6d335dc23230 to your computer and use it in GitHub Desktop.
Vue: Reload individual component
<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