vue2 实现锚点跨页面跳转相指定位置
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
实现需求:
在A页面的一个标题跳转到B页面相对应标题的位置展示内容
A页面:
<template>
<h1 @click="toClick('companyP')">往期回顾</h1>
</template>
<script>
export default {
methods: {
toClick(id) {
this.$router.push({
path: "要跳转的页面",
query: {
preView : id,
},
});
},
},
};
</script>
B页面:
<template>
<div class="container">
<div class="new">
<h1>最新活动</h1>
<ul>
<li v-for="item in 6" :key="item"></li>
</ul>
</div>
<div class="past" id="companyP">
<h1>往期回顾</h1>
<ul>
<li v-for="item in 12" :key="item"></li>
</ul>
</div>
</div>
</template>
<script>
export default {
mounted() {
if (this.$route.query.preView) {
const anchorId = this.$route.query.preView;
const targetElement = document.getElementById(anchorId);
if (targetElement) {
targetElement.scrollIntoView({ behavior: "smooth", block: "start" });
}
}
},
};
</script>
GitHub 加速计划 / vu / vue
207.55 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:3 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 5 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)