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 )
}
},
Source:stackexchange.com