feat(VantCli): mobile page refreshes are located based on the hash (#11918)

This commit is contained in:
ShuGang Zhou 2023-05-30 21:20:38 +08:00 committed by GitHub
parent 2e6a7b99d0
commit 63a8e4443e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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() {
const { slugify } = await import('transliteration');
this.slugify = slugify;