网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

vue怎么实现回到顶部功能

时间:2024-10-13 14:09:28

1、方法一、锚点方式通过点击锚点回到指定位置:

vue怎么实现回到顶部功能

2、方法二、通过点击事件将scrollTop重置为0,从而达到返回顶部的效果。完整代码<template> <div class="hello_world"> <button class="top" @click="toTop">^</button> </div></template><script>export default { methods: { toTop() { document.documentElement.scrollTop = 0; }, },};</script><style>.hello_world { height: 5000px;}.top { position: fixed; width: 30px; height: 30px; bottom: 50px; right: 100px; background-color: aqua; }</style>

vue怎么实现回到顶部功能
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com