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: {
|
methods: {
|
||||||
goTags (tag) {
|
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)
|
this.$emit('currentTag', tag)
|
||||||
},
|
},
|
||||||
tagClick (tagInfo) {
|
tagClick (tagInfo) {
|
||||||
this.$router.push({ path: tagInfo.path })
|
if (this.$route.path !== tagInfo.path) {
|
||||||
|
this.$router.push({ path: tagInfo.path })
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 获取当前页码
|
// 获取当前页码
|
||||||
getCurrentPage (page) {
|
getCurrentPage (page) {
|
||||||
|
@ -63,7 +63,9 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
tagClick (tagInfo) {
|
tagClick (tagInfo) {
|
||||||
this.$router.push({ path: tagInfo.path })
|
if (this.$route.path !== tagInfo.path) {
|
||||||
|
this.$router.push({ path: tagInfo.path })
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getCurrentTag (tag) {
|
getCurrentTag (tag) {
|
||||||
|
@ -73,6 +73,10 @@ body
|
|||||||
img
|
img
|
||||||
max-width 100%
|
max-width 100%
|
||||||
|
|
||||||
|
.abstract
|
||||||
|
img
|
||||||
|
max-width 100%
|
||||||
|
|
||||||
a
|
a
|
||||||
font-weight 500
|
font-weight 500
|
||||||
color $accentColor
|
color $accentColor
|
||||||
|
Loading…
Reference in New Issue
Block a user