mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(cli): support anchor
This commit is contained in:
parent
4588df560c
commit
6519c12656
@ -31,6 +31,19 @@ window.vueRouter = router;
|
|||||||
|
|
||||||
new Vue({
|
new Vue({
|
||||||
el: '#app',
|
el: '#app',
|
||||||
|
mounted() {
|
||||||
|
if (this.$route.hash) {
|
||||||
|
// wait page init
|
||||||
|
setTimeout(() => {
|
||||||
|
const el = document.querySelector(this.$route.hash);
|
||||||
|
if (el) {
|
||||||
|
el.scrollIntoView({
|
||||||
|
behavior: 'smooth'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
},
|
||||||
render: h => h(App),
|
render: h => h(App),
|
||||||
router
|
router
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user