锚点跳转
2023-08-15 本文已影响0人
辉色星空下
<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" });
},