fix(vuepress-theme-reco): fix tag & abstract error
1. tag click 404 2. img max-width in abstract
This commit is contained in:
parent
44f9d0eb14
commit
97d8196225
@ -85,7 +85,9 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
goTags (tag) {
|
||||
this.$router.push({ path: `/tags/${tag}/` })
|
||||
if (this.$route.path !== `/tag/${tag}/`) {
|
||||
this.$router.push({ path: `/tag/${tag}/` })
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -71,7 +71,9 @@ export default {
|
||||
this.$emit('currentTag', tag)
|
||||
},
|
||||
tagClick (tagInfo) {
|
||||
this.$router.push({ path: tagInfo.path })
|
||||
if (this.$route.path !== tagInfo.path) {
|
||||
this.$router.push({ path: tagInfo.path })
|
||||
}
|
||||
},
|
||||
// 获取当前页码
|
||||
getCurrentPage (page) {
|
||||
|
@ -63,7 +63,9 @@ export default {
|
||||
methods: {
|
||||
|
||||
tagClick (tagInfo) {
|
||||
this.$router.push({ path: tagInfo.path })
|
||||
if (this.$route.path !== tagInfo.path) {
|
||||
this.$router.push({ path: tagInfo.path })
|
||||
}
|
||||
},
|
||||
|
||||
getCurrentTag (tag) {
|
||||
|
@ -73,6 +73,10 @@ body
|
||||
img
|
||||
max-width 100%
|
||||
|
||||
.abstract
|
||||
img
|
||||
max-width 100%
|
||||
|
||||
a
|
||||
font-weight 500
|
||||
color $accentColor
|
||||
|
Loading…
Reference in New Issue
Block a user