Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Vue <KeepAlive> 组件


示例

使用内置的 <KeepAlive> 组件来使组件保留以前输入的用户输入

<KeepAlive>
  <component :is="activeComp"></component>
</KeepAlive>
运行示例 »

请看下面的更多示例。


定义和用法

内置的 <KeepAlive> 组件用于围绕动态组件,以便在组件不活动时缓存组件,从而保留其状态。


属性

可以将 <KeepAlive> 组件与不同的属性一起使用,以便我们可以指定哪些组件应该被缓存,以便它们保留其状态。

属性 描述
none 所有组件都被缓存,因此它们保留其状态 运行示例 »
include 可选。指定应保留其状态的组件的名称 运行示例 »
exclude 可选。指定不应保留其状态的组件的名称 运行示例 »
max 可选。指定应保留其状态的组件的最大数量。如果你指定缓存最多 4 个组件,那么将缓存最后访问的 4 个组件。 运行示例 »

使用 <KeepAlive> 缓存的组件的生命周期

使用内置 <KeepAlive> 组件缓存的组件将在它们被设置为活动动态组件或未被设置为活动动态组件时在 activateddeactivated 状态之间切换。

可以使用 activated()deactivated() 生命周期钩子在这样的缓存组件被设置为活动组件或未被设置为活动组件时运行代码。


更多示例

示例

使用 include 属性指定哪些组件将缓存值

<KeepAlive include="CompOne,CompThree">
  <component :is="activeComp"></component>
</KeepAlive>
运行示例 »

示例

使用 exclude 属性指定哪些组件不会缓存值

<KeepAlive exclude="CompOne">
  <component :is="activeComp"></component>
</KeepAlive>
运行示例 »

示例

使用 max 属性指定将缓存值的最后访问的组件的数量

<KeepAlive :max="2">
  <component :is="activeComp"></component>
</KeepAlive>
运行示例 »

相关页面

Vue 教程:动态组件

Vue 教程:'activated' 和 'deactivated' 生命周期钩子


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.