mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(docs): sync mobile position on anchor click (#11879)
This commit is contained in:
parent
52ab19e185
commit
b275e1867d
@ -12,6 +12,11 @@ import { copyToClipboard } from '../../common';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'VanDocContent',
|
name: 'VanDocContent',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
iframeDocument: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
currentPage() {
|
currentPage() {
|
||||||
@ -50,6 +55,19 @@ export default {
|
|||||||
name: this.$route.name,
|
name: this.$route.name,
|
||||||
hash: '#' + target.id,
|
hash: '#' + target.id,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.syncMobilePos(target.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
syncMobilePos(id) {
|
||||||
|
// Getting the document at this point is to ensure that the target has been fully rendered.
|
||||||
|
if (this.iframeDocument) {
|
||||||
|
const target = this.iframeDocument.getElementById(id);
|
||||||
|
target && target.scrollIntoView(true);
|
||||||
|
} else {
|
||||||
|
const iframe = document.querySelector('iframe');
|
||||||
|
this.iframeDocument = iframe.contentWindow.document;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="van-doc-demo-block">
|
<div class="van-doc-demo-block">
|
||||||
<h2 v-if="title" class="van-doc-demo-block__title">{{ title }}</h2>
|
<h2 v-if="title" class="van-doc-demo-block__title" :id="slugifyTitle">
|
||||||
|
{{ title }}
|
||||||
|
</h2>
|
||||||
<div v-if="card" class="van-doc-demo-block__card">
|
<div v-if="card" class="van-doc-demo-block__card">
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
@ -9,6 +11,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { slugify } from 'transliteration';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DemoBlock',
|
name: 'DemoBlock',
|
||||||
|
|
||||||
@ -16,6 +20,11 @@ export default {
|
|||||||
card: Boolean,
|
card: Boolean,
|
||||||
title: String,
|
title: String,
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
slugifyTitle() {
|
||||||
|
return slugify(this.title);
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user