[Vuejs]-ScrollintoView not taking component to the top of the page

0👍

Try to use querySelector.

mounted(){
    if(this.id){
      const el = this.$el.querySelector("#service");
      if (el) {
        el.scrollIntoView();
      }
    }
  }

codepen – https://codepen.io/Pratik__007/pen/bGrYYZP

Leave a comment