Example of using store in vue3 to record scroll position

Example of using store in vue3 to record scroll position

Overall Effect

When 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 events

Define 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

The store is relatively simple, containing only one state: y and mutations: setY

export default {
    state:{
         y:0
    },
    mutations:
        setY(state,value){
            state.y = value;
        }
    }
}

Get the scroll position when the page jumps back

Also 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

nextTick(() => { contentWrapper.scrollTop = store.state.y; })

at last

The 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:
  • Keep-alive in Vue implements back without refreshing and keeps the scroll position
  • Solve the problem that Vue cannot set the scroll position
  • How to remember the scroll position when entering the details page in Vue (keep-alive)
  • Solution to the bug that the page scroll position remains unchanged after vue2.0 route switching
  • Vue scroller returns the page to remember the scroll position example code
  • vue-scroller sample code for recording scroll position
  • How to solve the problem of fixed scroll position of Vue page

<<:  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)

Recommend

Detailed explanation of how to pass password to ssh/scp command in bash script

Install SSHPASS For most recent operating systems...

JavaScript message box example

Three types of message boxes can be created in Ja...

Example tutorial on using the sum function in MySQL

Introduction Today I will share the use of the su...

Detailed explanation of how to use awk in Linux

Before learning awk, we should have learned sed, ...

How to implement Vue binding class and binding inline style

Table of contents Binding Class Binding inline st...

Solution to VMware virtual machine no network

Table of contents 1. Problem Description 2. Probl...

A QQ chat room based on vue.js

Table of contents Introduction The following is a...

Do you know how to use vue-cropper to crop pictures in vue?

Table of contents 1. Installation: 2. Use: 3. Bui...

Analysis of HTTP interface testing process based on postman

I accidentally discovered a great artificial inte...

Design theory: people-oriented design concept

<br />When thoughts were divided into East a...

Detailed explanation of how Angular handles unexpected exception errors

Written in front No matter how well the code is w...