2.3.3
https://github.com/ekoooo/vue-test
(1) 进入主页,滑至最底部,↓
(1) build test project, scroll index page to bottom.
(2) 点击最底部链接进入其他界面,↓
(2) click sub page link.
(3) 点击浏览器返回(这时出现空白界面),↓
(3) click back button and see a blank page.
(4) 其实界面是有内容,可以进行选择,↓
(4) actually, this page have contents, i can select.
(5) 只要界面滑动就会显示,↓
(5) when i scroll this page and the contents show.
useragent
Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Mobile/14E304 MicroMessenger/6.5.12 NetType/WIFI Language/zh_CN
Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1
英语不好,请不要见笑
点击浏览器返回后应该能正常显示
render a complete page when navigate back
点击浏览器返回后显示空白(其实有内容),滑动之后才能正常显示
render a blank page when navigate back
Could you please remove the images (or make them smaller) and include steps to reproduce as well as a description of the bug, please? Bonus points if it's in English 😁
Hi, my solution is that when these elements that will disappear been rendered, set the scrollTop a number(let browser dispatch the scroll event).Then they will show.
just like this
vm.$nextTick( () => {
document.body.scrollTop = 1;
})
@caoyi5225, thanks for your solution.
@caoyi5225 牛逼毅哥!
Most helpful comment
Hi, my solution is that when these elements that will disappear been rendered, set the scrollTop a number(let browser dispatch the scroll event).Then they will show.
just like this
vm.$nextTick( () => { document.body.scrollTop = 1; })