Previous versions of History (npm installation history) used pushState. pushState is an HTML5 feature regarding updating a URL without going to a page / template / component.
This was deprecated in honor of push ("path"), which is cleaner than the best syntax according to some.
Replace
this.history.pushState(null, "/route/")
with
this.history.push('/store/' + storeId);
source share