[Vuejs]-Vue & Vue Route how to make an image blur when the route begin?

0👍

Try this code. watch on router will call whenever your route changes and you also need to call on mounted for first-page load event.

watch: {
      $route: function () {
        let self = this;
    setTimeout(function() {
    self.blurConfig.isBlurred = false
 }, 2000 )
      }
    },

Leave a comment