<span id="top"></span>
<el-button
class="fixed font"
icon="el-icon-upload2"
@click="goTop"
></el-button>
goTop() {
const mainRoot = document.getElementById("top");
mainRoot.scrollIntoView({ behavior: "smooth", block: "center" });
},
网友评论