# 常见问题
# IOS slide 模式遇到卡顿怎么办
在setTimeout
里调用refresh即可、
{
handleLoadBeforeDeactivate(vm, loadDom, done) {
fetchData("remoteurl").then(response => {
this.data = response.data;
// 注意:
// 由于要先让vue渲染完新增的数据
// 所以要在setTimeout里面调用refersh
setTimeout(() => {
this.$refs.vs.refresh();
}, 100)
});
},
}
提示
如果遇到其他卡顿的情况,也可以调用refresh