How to use specified component cache of vue

php中世界最好的语言
Release: 2018-04-08 15:37:43
Original
2206 people have browsed it

This time I will bring you how to use vue's specified component cache. What are theprecautions for using vue's specified component cache?. The following is a practical case, let's take a look.

keep-alive Introduction

keep-alive is a built-in component of Vue that allows included components to retain their state or avoid re- render.

Usage is also very simple:

    
Copy after login

props

##include-Stringor regular expression , only matching components will be cachedexclude - string or
regular expression, any matching components will not be cached

// 组件 a export default { name: 'a', data () { return {} } }     可以保留它的状态或避免重新渲染     可以保留它的状态或避免重新渲染                    
Copy after login

meet vue-router

router-view is also a component. If it is directly wrapped in keep-alive, all

viewcomponents matching the path will be cached:

    
Copy after login
However Product owners always have to change their requirements, and they can’t stop it...

Question

What should I do if I only want a certain component in the router-view to be cached? ?

Use include/exclude

Add the router.meta attribute
Use include/exclude

// 组件 a export default { name: 'a', data () { return {} } }     
Copy after login
exclude The example is similar.

Disadvantages: Need to know the name of the component, not a good choice when the project is complex

Add router.meta attribute

// routes 配置 export default [ { path: '/', name: 'home', component: Home, meta: { keepAlive: true // 需要被缓存 } }, { path: '/:id', name: 'edit', component: Edit, meta: { keepAlive: false // 不需要被缓存 } } ]        
Copy after login
Advantages: No need to enumerate the components that need to be Cache component name

[Salt]Use router.meta to expand

Suppose there are 3 routes: A, B, C.

Requirements:

Default display A

B jumps to A, A does not refresh
C jumps to A, A refreshes
Implementation method

In A Set the meta attribute in the route:

{ path: '/', name: 'A', component: A, meta: { keepAlive: true // 需要被缓存 } }
Copy after login
Set beforeRouteLeave in the B component:

export default { data() { return {}; }, methods: {}, beforeRouteLeave(to, from, next) { // 设置下一个路由的 meta to.meta.keepAlive = true; // 让 A 缓存,即不刷新 next(); } };
Copy after login
Set beforeRouteLeave in the C component:

export default { data() { return {}; }, methods: {}, beforeRouteLeave(to, from, next) { // 设置下一个路由的 meta to.meta.keepAlive = false; // 让 A 不缓存,即刷新 next(); } };
Copy after login
In this way, B can return to A. A does not refresh; C returns to A and refreshes.

Summary

The routing method is good, you don’t need to care about which page jumps to, just router.go(-1) can go back , no additional parameters are required.

However, in non-single-page applications, keep-alive cannot be cached effectively = =

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to php Chinese Other related articles online!

Recommended reading:

How to call child components from Angular parent components

How to learn vue for beginners

The above is the detailed content of How to use specified component cache of vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn