Skip to content

Commit 3a4e9e8

Browse files
committed
fix: tag btn of page info click invalid
1 parent 7855bd5 commit 3a4e9e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ā€Žcomponents/HomeBlog.vueā€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export default {
169169
},
170170
getPagesByTags (currentTag) {
171171
const base = this.$site.base
172-
window.location.href = `${base}tag/#?tag=${currentTag}`
172+
window.location.href = `${base}tag/?tag=${currentTag}`
173173
},
174174
// čŽ·å–ę—¶é—“ēš„ę•°å­—ē±»åž‹
175175
_getTimeNum (data) {

ā€Žcomponents/PageInfo.vueā€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default {
5353
methods: {
5454
goTags (tag) {
5555
const base = this.$site.base
56-
window.location.href = `${base}tag/#?tag=${tag}`
56+
window.location.href = `${base}tag/?tag=${tag}`
5757
}
5858
}
5959
}

0 commit comments

Comments
Ā (0)
⚔