custom.vue 397 B

123456789101112131415161718
  1. <template>
  2. Scroll down to see the bottom-right button.
  3. <el-backtop :bottom="100">
  4. <div
  5. style="
  6. height: 100%;
  7. width: 100%;
  8. background-color: var(--el-bg-color-overlay);
  9. box-shadow: var(--el-box-shadow-lighter);
  10. text-align: center;
  11. line-height: 40px;
  12. color: #1989fa;
  13. "
  14. >
  15. UP
  16. </div>
  17. </el-backtop>
  18. </template>