Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created June 29, 2021 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kcko/2f96f84f59e556abd0905e8292bf38e8 to your computer and use it in GitHub Desktop.
Save Kcko/2f96f84f59e556abd0905e8292bf38e8 to your computer and use it in GitHub Desktop.
<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