Is there a way to refresh the Current Router View? Something like location.reload(). But not on the whole page, only in the current path name view.
I searched a lot about it and i tried to do
this.$route.router.go
/\ This reloads all the page, not good.
I found a very good possible solution Here. But when i tried it:
vm.$forceupdate
Console.log (vm.$forceUpdate)
ƒ () { var vm = this; if (vm._watcher) { vm._watcher.update(); } }
Yes! 'vm' is already a global variable. console.log ( vm )
Vue$3 {_uid: 0, _isVue: true, $options: {…}, _renderProxy: Proxy, _self: Vue$3, …}
Nothing happens with this function. Someone knows what is happening or other way to do that?
Thanks!!