uniapp使用scroll-view的:scroll-into-view 来跳到某个元素id时候不生效

889 阅读1分钟

scrollInto定义的要跳转元素的id

app上不生效,可以通过加一个一次性定时器来延迟赋值解决。

如:

setTimeout(()=>{
	this.scrollInto = 元素id
},50)