1. FunctionMainly 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 includeinclude - a string or a regular expression. Only components with matching names will be cached. excludeexclude - 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. maxmax : 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:
|
>>: CentOS 7 configuration Tomcat9+MySQL solution
This article describes how to compile and install...
Get the mongo image sudo docker pull mongo Run th...
Table of contents 1. Prepare data Create a data t...
Docker is a management tool that uses processes a...
When Mysql occupies too much CPU, where should we...
There is often a scenario where the image needs t...
location expression type ~ indicates to perform a...
Table of contents 1. Introduction to Linux system...
<br />Original source: http://www.a-xuan.cn/...
Preface: I used the official nginx proxy_cache as...
1. First, download the latest version of MySQL fr...
<br />When the page contains <img src=&qu...
Key Takeaways: 1. Mastering CSS3 3D animation 2. ...
Prepare 1. Download the required installation pac...
Use HTML to create complex tables. Complex tables...