Vue implements 3 ways to switch tabs and switch to maintain data status

Vue implements 3 ways to switch tabs and switch to maintain data status

3 ways to implement tab switching in Vue

1. v-show controls content switching

1. Simple version principle: Use click event to change num value as a switch to control tab style and content display and hiding.

Click to switch the Vue tab

2. Data rendering principle: mainly use the index bound by v-for to control, which is similar to the above.

for-tab

2. Component switching.

1. The main knowledge points are the characteristics of is in vue and keep-alive cache

Vue component switching

3. Route switching. (Friendly for address bar and data request)

This is accomplished through router-link.

vue tab switch keeps data status

When switching tabs on a page, since the component will be re-instantiated every time it is switched, we want the content in the tab to remain unchanged no matter how the page is switched, reducing page re-rendering and requests.

Implementation method: Use <keep-alive></keep-alive> to wrap the component

<el-tabs v-model="activeName" @tab-click="handleClick">
  <el-tab-pane label="Record">
    <keep-alive>
      <child1 v-if="isChildUpdate"></child1>
    </keep-alive>
  </el-tab-pane>
</el-tabs>

Jump to details on the list page, and keep the last operation status on the list page

This is achieved by loading router-view and setting the routing meta page to cache.

If router-view is nested in multiple layers, you may need to set up multiple layers, and then use beforeRouteLeave to listen to the route leaving and set whether to cache

// Jumping from other pages does not require caching of pages. Returning from the details page requires caching.

Summarize

This concludes this article about 3 ways to implement tab switching in Vue and how to maintain data status during switching. For more information about Vue tab switching methods, please search 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:
  • Problems and solutions for using vue-router and v-if to implement tab switching
  • Vue implements the method example of tab routing switching component
  • Detailed explanation of using Vue to implement tab switching operation
  • Four ways to switch tab pages in VUE
  • How to switch tabs in Vue router

<<:  How to Monitor Linux Memory Usage Using Bash Script

>>:  Detailed explanation of new relational database features in MySQL 8.0

Recommend

Implementation of MySQL multi-version concurrency control MVCC

Transaction isolation level settings set global t...

Detailed tutorial on how to quickly install Zookeeper in Docker

Docker Quickly Install Zookeeper I haven't us...

Discussion on CSS style priority and cascading order

In general : [1 important flag] > [4 special fl...

Use vertical-align to align input and img

Putting input and img on the same line, the img ta...

Summary of the Differences between SQL and NoSQL

Main differences: 1. Type SQL databases are prima...

Detailed analysis of classic JavaScript recursion case questions

Table of contents What is recursion and how does ...

How to prevent computer slowdown when WIN10 has multiple databases installed

Enable the service when you need it, and disable ...

WeChat applet learning wxs usage tutorial

What is wxs? wxs (WeiXin Script) is a scripting l...

How to get the width and height of the image in WeChat applet

origin Recently, I am working on requirement A, i...

Docker-compose tutorial installation and quick start

Table of contents 1. Introduction to Compose 2. C...

Why is UTF-8 not recommended in MySQL?

I recently encountered a bug where I was trying t...

Solution to Vue's inability to watch array changes

Table of contents 1. Vue listener array 2. Situat...

Play and save WeChat public account recording files (convert amr files to mp3)

Table of contents Audio transcoding tools princip...