mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(VantCli): mobile page refreshes are located based on the hash (#11918)
This commit is contained in:
parent
2e6a7b99d0
commit
63a8e4443e
@ -31,6 +31,22 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
slugifyTitle(newVal) {
|
||||||
|
if (newVal) {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
let hash = '';
|
||||||
|
if (top) hash = top.location.hash.split('#').pop();
|
||||||
|
else hash = location.hash.split('#').pop();
|
||||||
|
const target = document.getElementById(newVal);
|
||||||
|
if (target && newVal === hash) {
|
||||||
|
target.scrollIntoView(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
const { slugify } = await import('transliteration');
|
const { slugify } = await import('transliteration');
|
||||||
this.slugify = slugify;
|
this.slugify = slugify;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user