We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6ac827 + 6fa713c commit 974b975Copy full SHA for 974b975
web/src/view/layout/aside/historyComponent/history.vue
@@ -177,6 +177,9 @@ const isSame = (route1, route2) => {
177
if (route1.name !== route2.name) {
178
return false
179
}
180
+ if (Object.keys(route1.query).length != Object.keys(route2.query).length || Object.keys(route1.params).length != Object.keys(route2.params).length) {
181
+ return false
182
+ }
183
for (const key in route1.query) {
184
if (route1.query[key] !== route2.query[key]) {
185
0 commit comments