mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(perf): lazy import transliteration (#11893)
This commit is contained in:
parent
b4af4022c6
commit
3bbe31da1b
@ -62,13 +62,16 @@ export default {
|
|||||||
|
|
||||||
syncMobilePos(id) {
|
syncMobilePos(id) {
|
||||||
// Getting the document at this point is to ensure that the target has been fully rendered.
|
// Getting the document at this point is to ensure that the target has been fully rendered.
|
||||||
if (this.iframeDocument) {
|
if (!this.iframeDocument) {
|
||||||
const target = this.iframeDocument.getElementById(id);
|
|
||||||
target && target.scrollIntoView(true);
|
|
||||||
} else {
|
|
||||||
const iframe = document.querySelector('iframe');
|
const iframe = document.querySelector('iframe');
|
||||||
this.iframeDocument = iframe.contentWindow.document;
|
this.iframeDocument = iframe.contentWindow.document;
|
||||||
}
|
}
|
||||||
|
if (this.iframeDocument) {
|
||||||
|
const target = this.iframeDocument.getElementById(id);
|
||||||
|
if (target) {
|
||||||
|
target.scrollIntoView(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
copyAction() {
|
copyAction() {
|
||||||
|
@ -11,8 +11,6 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { slugify } from 'transliteration';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DemoBlock',
|
name: 'DemoBlock',
|
||||||
|
|
||||||
@ -20,11 +18,23 @@ export default {
|
|||||||
card: Boolean,
|
card: Boolean,
|
||||||
title: String,
|
title: String,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
slugify: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
slugifyTitle() {
|
slugifyTitle() {
|
||||||
return slugify(this.title);
|
return this.slugify ? this.slugify(this.title) : '';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
async mounted() {
|
||||||
|
const { slugify } = await import('transliteration');
|
||||||
|
this.slugify = slugify;
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user