Vue implements page caching function

Vue implements page caching function

This article example shares the specific code of Vue to implement the page caching function for your reference. The specific content is as follows

Keep-alive is mainly used to jump from the list page to the detail page, and then when you click back, the page cache does not need to request resources again.

1. Configure routing in the router

Define in meta whether the page needs to be cached

import Vue from "vue";
import Router from "vue-router";

// Avoid redundant navigation to the current location const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
   return originalPush.call(this, location).catch(err => err)
}

Vue.use(Router);
export default new Router({
  base: '',
  routes: [{
      path: "/",
      name: "index",
      component: () => import("@/layout"),
      redirect: '/login',
      children: [
        {
          path: 'dutySheet',
          name: 'dutySheet',
          component: () => import("@/pages/Dashboard/DutySheet")
        },
        {
          path: 'searchWord',
          name: 'searchWord',
          component: () => import("@/pages/dailyReportManage/searchWord/index"),
          meta: {
            keepAlive: true // Need to cache the page}
        },
        // Matching maintenance {
          path: "troopAction",
          name: "troopAction",
          component: () => import("@/pages/Dashboard/TroopAction"),
          meta: {
            keepAlive: false // No cache required}
     },
      ]
    },
  ]
});

2. Configure APP.vue

Use keep-alive for caching

<keep-alive>
    <router-view v-if="$route.meta.keepAlive"></router-view>
</keep-alive>
<router-view v-if="!$route.meta.keepAlive"></router-view>

3. When you click the back button, just call the this.$router.back() method

// return bacKBnt(){
        this.$router.back()
      },

4. Clear the cache

Only jumps to the "exhibitionWord" or "exhibitionWeekWord" page are cached, and jumps to other pages do not need to be cached.

beforeRouteLeave(to, from, next) {
      if (to.name == 'exhibitionWord' || to.name == 'exhibitionWeekWord') { // Route name to be cached
          from.meta.keepAlive = true
          next()
        }else{
          from.meta.keepAlive = false
          next()
      }
    },

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to read and write data in local cache in Vue
  • Summary of Vue browser local storage issues
  • Detailed explanation of the principle of Vue monitoring data
  • Vue calls local cache mode (monitoring data changes)

<<:  How to install OpenSuse on virtualbox

>>:  Detailed explanation of the difference between MySQL normal index and unique index

Recommend

How to use docker compose to build fastDFS file server

The previous article introduced a detailed exampl...

Detailed explanation of component development of Vue drop-down menu

This article example shares the specific code for...

Additional instructions for using getters and actions in Vuex

Preliminary Notes 1.Differences between Vue2.x an...

Problem analysis of using idea to build springboot initializer server

Problem Description Recently, when I was building...

Summary of webpack's mobile adaptation solution

Table of contents rem vw Adapt to third-party UI ...

Solution to the problem of repeated triggering of functions in Vue project watch

Table of contents Problem description: Solution 1...

Detailed tutorial on deploying Hadoop cluster using Docker

Recently, I want to build a hadoop test cluster i...

Simple use of Vue vee-validate plug-in

Table of contents 1. Installation 2. Import 3. De...

Linux dual network card binding script method example

In Linux operation and configuration work, dual n...

How to reduce image size using Docker multi-stage build

This article describes how to use Docker's mu...

Three ways to achieve background blur in CSS3 (summary)

1. Normal background blur Code: <Style> htm...

Introduction to the use of several special attribute tags in HTML

The following attributes are not very compatible w...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

Detailed installation history of Ubuntu 20.04 LTS

This article records the creation of a USB boot d...

Vue Element front-end application development: Use of API Store View in Vuex

Table of contents Overview 1. Separation of front...