vue锚点跳转

  goId(id) {
      const returnEle = document.querySelector(id);  //id是将要跳转区域的id
        if (!!returnEle) {
          returnEle.scrollIntoView(true); // true 是默认的
        }
        document.querySelector(id).scrollIntoView(true)
    },

你可能感兴趣的:(vue锚点跳转)