<template>
<u-back-top :height="100" :bottom="200">
<div class="backtop-self-style">返回顶端</div>
</u-back-top>
</template>
<style>
.backtop-self-style{
padding: 10px;
background: rgba(0, 153, 229, .7);
color: #fff;
text-align: center;
border-radius: 2px;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15