企业网站建设的要求,标准营销型网站定做价格,北京做网站软件,黄岛区城市建设局网站页面跳转后页面还是停留在上一个页面的位置#xff0c;没有回到顶部 解决
1、router中路由守卫中统一添加
router.beforeEach(async (to, from, next) {window.scrollTo(0, 0);next();
});
2、页面中监听页面变化
script setup
import { ref, onMounted, wat… 页面跳转后页面还是停留在上一个页面的位置没有回到顶部 解决
1、router中路由守卫中统一添加
router.beforeEach(async (to, from, next) {window.scrollTo(0, 0);next();
});
2、页面中监听页面变化
script setup
import { ref, onMounted, watch } from vue;
import { useRouter, useRoute } from vue-router;
const router useRouter();
const route useRoute();watch(() route.path,(path) {console.log(path, path);window.scrollTo({ top: 0, behavior: smooth });}
);/script