How to drop a query in a url?
here is the solution:
$router.push($route.path)
To remove all params:
this.$router.replace({'query': null});
To add my_query
param:
this.$router.replace({'query': {'my_query': 1}});
here is the solution:
$router.push($route.path)
To remove all params:
this.$router.replace({'query': null});
To add my_query
param:
this.$router.replace({'query': {'my_query': 1}});