// 点击此处
 <div @click="goDingyue">立即订阅</div>
 //   跳转到该位置
 <div class="dingyue_box" ref="dingyue_box_ref">
      立即订阅内容
 </div>
  methods: {
 goDingyue() {
      // 获取元素在页面中的位置
      console.log(this.$refs.dingyue_box_ref.getBoundingClientRect());
      // document
      //   .getElementById("agentTitle")
      //   .scrollIntoView({ block: "start", behavior: "smooth" });
      // 跳转到指定位置并且平滑滚动
      this.$el
        .querySelector(".dingyue_box")
        .scrollIntoView({ block: "start", behavior: "smooth" });
    },
}
Logo

前往低代码交流专区

更多推荐