Overall EffectWhen you scroll through the homepage list and enter the details page, you can return to the previously browsed location when you switch back to the homepage. Listen for container scroll eventsDefine a scroll event and bind it to the container's scroll event. I've done some throttling here. const savePosY = () => { if(state.timer) return; state.timer = setTimeout(() => { let node = document.querySelector(".contentWrapper"); //Record scroll positionstore.commit("setY",node.scrollTop) state.timer = null; clearTimeout(state.timer); },100) Get the container in mounted to bind the event onMounted(() => { let contentWrapper = document.querySelector(".contentWrapper"); contentWrapper.addEventListener("scroll",savePosY); }) Configuration in the store
export default { state:{ y:0 }, mutations: setY(state,value){ state.y = value; } } } Get the scroll position when the page jumps backAlso operate in onMounted, otherwise the container element cannot be obtained, and because DOM in Vue is rendered asynchronously, we need to operate in nextTick to be effective at lastThe above is the full content of this article. If there is something wrong or a better method, you are welcome to communicate and point it out. The above is the details of the example of how vue3 uses store to record the scroll position. For more information about vue to record the scroll position, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to solve the error "ERROR 1045 (28000)" when logging in to MySQL
>>: How to view and clean up Docker container logs (tested and effective)
Install SSHPASS For most recent operating systems...
Three types of message boxes can be created in Ja...
Introduction Today I will share the use of the su...
Before learning awk, we should have learned sed, ...
Use of built-in functions in the database This ar...
Table of contents Binding Class Binding inline st...
Table of contents 1. Problem Description 2. Probl...
Table of contents Introduction The following is a...
1. Source of the problem A friend @水米田 asked me a...
This article records the installation graphic tut...
Table of contents 1. Installation: 2. Use: 3. Bui...
I accidentally discovered a great artificial inte...
Solve the problem of Chinese garbled characters i...
<br />When thoughts were divided into East a...
Written in front No matter how well the code is w...