A brief summary of vue keep-alive

A brief summary of vue keep-alive

1. Function

Mainly used to preserve component state or avoid re-rendering.

2. Usage

<keep-alive> When wrapping a dynamic component, inactive component instances are cached instead of being destroyed.

<keep-alive> is an abstract component: it does not render a DOM element itself, nor does it appear in the component's parent chain.

When a component is switched within <keep-alive>, its activated and deactivated lifecycle hook functions will be executed accordingly.

3. Props

include

include - a string or a regular expression. Only components with matching names will be cached.

exclude

exclude - a string or regular expression. Any components with matching names will not be cached.

The include and exclude props allow components to be conditionally cached. Both can be expressed as a comma-delimited string, a regular expression, or an array:

<!-- Comma separated string -->
<keep-alive include="a,b">
 <component :is="view"></component>
</keep-alive>

<!-- Regular expression (using `v-bind`) -->
<keep-alive :include="/a|b/">
 <component :is="view"></component>
</keep-alive>

<!-- Array (using `v-bind`) -->
<keep-alive :include="['a', 'b']">
 <component :is="view"></component>
</keep-alive>

Matching is first checked against the component's own name option, or if that is not available, against its locally registered name (the value of the parent component's components option key). Anonymous components cannot be matched.

max

max : a number. The maximum number of component instances that can be cached.

Once this number is reached, the cached component instance that has not been accessed in the longest time will be destroyed before a new instance is created.

<keep-alive :max="10">
 <component :is="view"></component>
</keep-alive>

The above is a brief analysis of the details of keep-alive in vue. For more information about keep-alive in vue, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Keep-alive multi-level routing cache problem in Vue
  • Example of usage of keep-alive component in Vue
  • In-depth understanding of keep-alive components in Vue
  • Two ways to apply keep-alive in Vue
  • Detailed explanation of keep-alive in Vue

<<:  MySQL implements increasing or decreasing the specified time interval for all times in the current data table (recommended)

>>:  CentOS 7 configuration Tomcat9+MySQL solution

Recommend

How to compile and install PHP and Nginx in Ubuntu environment

This article describes how to compile and install...

Implementation code for using mongodb database in Docker

Get the mongo image sudo docker pull mongo Run th...

Examples of MySQL and Python interaction

Table of contents 1. Prepare data Create a data t...

How to manage users and groups when running Docker

Docker is a management tool that uses processes a...

Optimization methods when Mysql occupies too high CPU (must read)

When Mysql occupies too much CPU, where should we...

Example code for implementing image adaptive container with CSS

There is often a scenario where the image needs t...

In-depth explanation of nginx location priority

location expression type ~ indicates to perform a...

A detailed introduction to Linux system operation levels

Table of contents 1. Introduction to Linux system...

Facebook's nearly perfect redesign of all Internet services

<br />Original source: http://www.a-xuan.cn/...

nginx proxy_cache batch cache clearing script introduction

Preface: I used the official nginx proxy_cache as...

2017 latest version of windows installation mysql tutorial

1. First, download the latest version of MySQL fr...

Double loading issue when the page contains img src

<br />When the page contains <img src=&qu...

Sample code for realizing book page turning effect using css3

Key Takeaways: 1. Mastering CSS3 3D animation 2. ...

How to install PHP7.4 and Nginx on Centos

Prepare 1. Download the required installation pac...

Example code for implementing complex table headers in html table

Use HTML to create complex tables. Complex tables...