页面滚动到某个DOM元素的位置

搞了一天,才实现这个功能。vue项目,与jsp页面,代码的写法是不同的。

  
    
  

toTop(){
//这种方式,在vue项目,无效
this.KaTeX parse error: Expected 'EOF', got '}' at position 34: …ollIntoView(); }̲ 改成 toTop(){ …nextTick(() => {
this.$refs.container.scrollTop = 0;
});
}

你可能感兴趣的:(vue)