mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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 {
|
||||
name: 'VanDocContent',
|
||||
data() {
|
||||
return {
|
||||
iframeDocument: null,
|
||||
};
|
||||
},
|
||||
|
||||
computed: {
|
||||
currentPage() {
|
||||
@ -50,6 +55,19 @@ export default {
|
||||
name: this.$route.name,
|
||||
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>
|
||||
<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">
|
||||
<slot />
|
||||
</div>
|
||||
@ -9,6 +11,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { slugify } from 'transliteration';
|
||||
|
||||
export default {
|
||||
name: 'DemoBlock',
|
||||
|
||||
@ -16,6 +20,11 @@ export default {
|
||||
card: Boolean,
|
||||
title: String,
|
||||
},
|
||||
computed: {
|
||||
slugifyTitle() {
|
||||
return slugify(this.title);
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user