fix: tag btn of page info click invalid

This commit is contained in:
reco_luan 2019-08-31 01:32:53 +08:00
parent 7855bd5056
commit 3a4e9e8011
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ export default {
},
getPagesByTags (currentTag) {
const base = this.$site.base
window.location.href = `${base}tag/#?tag=${currentTag}`
window.location.href = `${base}tag/?tag=${currentTag}`
},
//
_getTimeNum (data) {

View File

@ -53,7 +53,7 @@ export default {
methods: {
goTags (tag) {
const base = this.$site.base
window.location.href = `${base}tag/#?tag=${tag}`
window.location.href = `${base}tag/?tag=${tag}`
}
}
}