0👍
Inside the dashboard component use router.push to remove the query string.
<script>
export default {
data() {
return {
};
},
created: function () {
let self = this;
self.$router.push('/dashboard');
},
};
</script>
Source:stackexchange.com