聚焦时,页面遮挡输入框

聚焦时,使页面自动滚动到中间

<input type="text" @focus="handleFoucs" />
methods: {
    handleFoucs (event) {
      setTimeout(() => {
        event.target.scrollIntoView({
          behavior: "smooth",
          block: "center",
          inline: "center"
        });
      }, 300)
    },
}
posted @ 2025-04-07 11:19  chicidol  阅读(8)  评论(0)    收藏  举报