
<template>
<div class="search" id="header">
..........
<div class="go-top"><a href="#header" >UP</a></div>
</div>
</template>
css
.go-top {
position: fixed;
right: 150px;
bottom: 100px;
cursor: pointer;
height: 50px;
width: 50px;
background-color: #f2f5f6;
box-shadow: 0 0 6px rgba(0,0,0, .12);
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
font-size: 28px;
color: #1989fa;
}
.go-top:hover{
transform: scale(1.3);
transition: all 0.4s ease 0s;
-webkit-transform: scale(1.3);
}
.go-top a{
text-decoration: none;
color: #1989fa;
}