Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created July 24, 2018 04:41
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 lmiller1990/1414dad055aee7e6ac29dee6094610f1 to your computer and use it in GitHub Desktop.
Save lmiller1990/1414dad055aee7e6ac29dee6094610f1 to your computer and use it in GitHub Desktop.
export function beforeEach((to, from, next) {
if (to.matched.some(record => record.meta.shouldBustCache)) {
bustCache()
}
next()
}
router.beforeEach((to, from, next) => beforeEach(to, from, next))
export default router
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment