0👍
Try to use querySelector
.
mounted(){
if(this.id){
const el = this.$el.querySelector("#service");
if (el) {
el.scrollIntoView();
}
}
}
Source:stackexchange.com
0👍
Try to use querySelector
.
mounted(){
if(this.id){
const el = this.$el.querySelector("#service");
if (el) {
el.scrollIntoView();
}
}
}