From cbeb64a65c8b74796f9a1278c054dd9525a7afc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E8=99=B9=E5=B7=9D=E9=A3=B4?= Date: Fri, 31 Dec 2021 18:56:16 +0800 Subject: [PATCH] fix #1152 (#1157) --- src/views/explore.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);