diff --git a/src/views/explore.vue b/src/views/explore.vue index b41b0a3..2e5057b 100644 --- a/src/views/explore.vue +++ b/src/views/explore.vue @@ -132,7 +132,7 @@ export default { }, goToCategory(Category) { this.showCatOptions = false; - this.$router.push({ path: '/explore?category=' + Category }); + this.$router.push({ name: 'explore', query: { category: Category } }); }, updatePlaylist(playlists) { this.playlists.push(...playlists);