mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
19 lines
377 B
Vue
19 lines
377 B
Vue
|
<template>
|
||
|
Scroll down to see the bottom-right button.
|
||
|
<el-backtop :bottom="100">
|
||
|
<div
|
||
|
style="
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
background-color: #f2f5f6;
|
||
|
box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
|
||
|
text-align: center;
|
||
|
line-height: 40px;
|
||
|
color: #1989fa;
|
||
|
"
|
||
|
>
|
||
|
UP
|
||
|
</div>
|
||
|
</el-backtop>
|
||
|
</template>
|