This is a button component that can go back to the top of the page. It's called Vue-Goto-Top. I hope it's helpful for your development.
npm install vue-goto-topnpm i vue-goto-top
1. 全局使用
import GoToTop from "vue-goto-top";
Vue.component(GoToTop.name,GoToTop);
2. 局部使用
import GoToTop from "vue-goto-top";
components: {GoToTop}
| 参数 | 类型 | 作用 |
| ----------- | ------ | ------------------- |
| top | number | 默认是600, 距离顶部多少px显示回到顶部按钮 |
``
``