Detailed explanation of the function and usage of keepAlive component in Vue

Detailed explanation of the function and usage of keepAlive component in Vue

Preface

During the interview, many interviewers may mention Vue when asking, do you know what keep-alive does?

keep-alive is a built-in component of vue, and the function of this component is to cache inactive components. We know that in general, when a component is switched, it will be destroyed by default. If there is a demand, a component will not be destroyed after switching, but the previous state will be saved, then keep-alive can be used to achieve

<keep-alive> is a built-in component of Vue, which can keep the state in memory during component switching to prevent repeated rendering of DOM.

<keep-alive> When wrapping a dynamic component, inactive component instances are cached instead of being destroyed. Similar to <transition>, <keep-alive> is an abstract component: it does not render a DOM element itself, nor does it appear in the parent component chain.

After I use the scaffolding to create a project, two components, home and about, will be generated, and they will be switched through routing.

Home Component

<template>
  <div class="home">
    <input type="text">
  </div>
</template>

<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'

export default {
  name: 'home',
  components:
    HelloWorld
  }
}
</script>

I wrote an input box in the home component

about component

<template>
  <div class="about">
    <input type="text">
  </div>
</template>
<script>
export default {
  name:"about"
}
</script>

The same about component also puts an input box

When we enter something in the input box of the home component, then switch to the about component, and then switch back to the home component, we will find that the previously entered content has been cleared. In fact, it is easy to understand that when switching to the about component, the home component is destroyed and the value of the input box is naturally cleared.

I wrote the destroyed lifecycle function in the home component

When switching to the about component, the destroyed of the home component is triggered, so the home component is destroyed.

Then we can use the keep-alive component to wrap the router-view component and cache the inactive components.

App Components

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>
    </div>
    <keep-alive>
      <router-view />
    </keep-alive>
    
  </div>
</template>

After writing, you will find that when switching to the about component, the destroyed in the home component is not triggered, and the value of the home component is also saved.

But this is definitely not good. We will find that the value of the about component is also cached, that is, all routing components are cached, which seriously wastes performance and does not meet the requirements. Now we only want to cache the home component.

There are two properties on keep-alive

A string or a regular expression. Only matching components will be cached.

  • Include value is a string or a regular expression matching the component name will be cached.
  • The exclude value is a string or regular expression that matches the component name and will not be cached.

First, use include to match the name defined in the component and cache it.

<keep-alive include="home">
   <router-view />
</keep-alive>

We will find that home has been cached, but about has not been cached

And exclude is to exclude, this will not be demonstrated, it is very simple, in addition to this we can also use the meta attribute in the route to control

{
      path: '/',
      name: 'home',
      meta:{
        keepAlive:true
      },
      component: Home
    }

Add the keepAlive attribute to true in the meta of the home routing rule clock, which means that the current routing component needs to be cached

The keep-alive code can be combined with v-if to wrap it. If the keepAlive in meta is true, it will be cached, otherwise it will not be cached. This can be more flexible.

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

In this way, component caching is implemented, but there are still some problems. Because the component is cached and not destroyed, the component will not be recreated when switching, and naturally the life cycle functions such as create will not be called. Therefore, activated and deactivated should be used to obtain whether the current component is active.

I wrote the activated and deactivated lifecycle functions in the home component

activated(){
    console.log("Oh, you saw me")
    console.log("----------activated--------")
  },
  deactivated(){
    console.log("Hate it!! You left again")
    console.log("----------deactivated--------")
  }

I believe you can see it clearly through the gif above. At this time, keep-alive is almost done.

Summarize

This is the end of this article about the role and usage of the keepAlive component in Vue. For more information about the usage of the keepAlive component in Vue, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Instructions for using keepAlive in Vue projects (super practical version)
  • Detailed explanation of keepAlive usage in Vue front-end development
  • Detailed explanation of vue keepAlive cache clearing problem case
  • Detailed explanation of keepAlive use cases in Vue
  • Solve the problem of not caching when using keepAlive in Vue
  • Vue keepsAlive setting does not take effect and its solution

<<:  Example usage of Linux compression file command zip

>>:  mysql5.5.28 installation tutorial is super detailed!

Recommend

WeChat applet realizes chat room function

This article shares the specific code of WeChat a...

js drag and drop table to realize content calculation

This article example shares the specific code of ...

Seven ways to implement array deduplication in JS

Table of contents 1. Using Set()+Array.from() 2. ...

MySQL column to row conversion, method of merging fields (must read)

Data Sheet: Column to row: using max(case when th...

JS realizes the automatic playback effect of pictures

This article shares the specific code of JS to ac...

JavaScript selector functions querySelector and querySelectorAll

Table of contents 1. querySelector queries a sing...

Simple implementation method of two-way data binding in js project

Table of contents Preface Publish-Subscriber Patt...

How to deploy nginx with Docker and modify the configuration file

Deploy nginx with docker, it's so simple Just...

Several ways to hide Html elements

1. Use CSS Copy code The code is as follows: style...

What are HTML inline elements and block-level elements and their differences

I remember a question the interviewer asked durin...

A complete list of meta tag settings for mobile devices

Preface When I was studying the front end before,...

Raspberry Pi msmtp and mutt installation and configuration tutorial

1. Install mutt sudo apt-get install mutt 2. Inst...

MYSQL performance analyzer EXPLAIN usage example analysis

This article uses an example to illustrate the us...

Navicat for MySQL 11 Registration Code\Activation Code Summary

Recommended reading: Navicat12.1 series cracking ...