Vue: enter the page to jump to the specified location

<div class="" ref="nowTopRef"></div>
mounted() {
    this.$nextTick(() => {
      const targetLocation = this.$refs.targetLocation;
      targetLocation.scrollIntoView();
      console.log(targetLocation.scrollIntoView())
    })
 },

Guess you like

Origin blog.csdn.net/Ygaidi/article/details/130222519