5👍
✅
The rendering speed of the vue-router
might be the issue. You can try assigning the value in any of the Vue life cycle hooks
var vm = new Vue({
el: '#app',
router,
data: {
message: null
},
created(){
this.message = this.$route;
}
});
Source:stackexchange.com