Details of using vue activated in child components

Details of using vue activated in child components

Page: base:

<template>
  <div class="tab-container">
    <h1 style="text-align: center">
      Apply for {{ form.category }}{{ form.companyType }} to settle in</h1>
    <div class="form-panel" style="margin-left: 20px;text-align: right;">
      <el-button type="info" @click="cancelSave">Cancel</el-button>
      <el-button type="warning" @click="transientSave">Save temporarily</el-button>
      <el-button type="danger" @click="persistSave">Save</el-button>
    </div>
    <el-tabs v-model="activeName" style="margin-top: 15px" type="border-card" :before-leave="collectPaneFormData" @tab-click="initPaneData">
      <el-tab-pane v-for="item in tabMapOptions" :key="item.key" :label="item.label" :name="item.key">
        <keep-alive>
          <tab-pane :is="item.key" :ref="item.key" :type="item.key" @create="showCreatedTimes" />
          <!--<component :is="item.key" :ref="item.key" :type="item.key" @create="showCreatedTimes" />-->
        </keep-alive>
      </el-tab-pane>
    </el-tabs>
  </div>
</template>

There are five tab-pane , three of which have activated methods in their child components. All three subcomponents have connections to person . When in person : this.$router.go(-1)

    // Cancel, close return cancelSubmit() {
      //Call the global mount method to close the current page this.$store.dispatch('tagsView/delView', this.$route)
      this.$router.go(-1)
    },

Will activated methods of the three subcomponents be executed at this time? How to jump to only the activated method of a subcomponent in person , and not execute the activated method of the other two

This is the end of this article about the details of using vue activated in subcomponents. For more information about the use of vue activated in subcomponents, please search for 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:
  • Usage of activated in Vue
  • Discussion and detailed use of keep-alive and activated in Vue
  • Vue life cycle activated returns to the previous page without re-requesting data operations

<<:  html page!--[if IE]...![endif]--Detailed introduction to usage

>>:  Detailed explanation of CSS3 rotating cube problem

Recommend

A brief introduction to mysql mycat middleware

1. What is mycat A completely open source large d...

Vue implements multi-column layout drag

This article shares the specific code of Vue to i...

Learn more about MySQL indexes

1. Indexing principle Indexes are used to quickly...

Implementation of scheduled backup in Mysql5.7

1. Find mysqldump.exe in the MySQL installation p...

W3C Tutorial (2): W3C Programs

The W3C standardization process is divided into 7...

Detailed explanation of the implementation of MySQL auto-increment primary key

Table of contents 1. Where is the self-incremente...

Detailed explanation of mandatory and implicit conversion of types in JavaScript

Table of contents 1. Implicit conversion Conversi...

Detailed examples of Zabbix remote command execution

Table of contents one. environment two. Precautio...

Mount the disk in a directory under Ubuntu 18.04

Introduction This article records how to mount a ...

Vue backend management system implementation of paging function example

This article mainly introduces the implementation...

Detailed explanation of how to upgrade software package versions under Linux

In the Linux environment, you want to check wheth...

Detailed explanation of the use of Vue's new built-in components

Table of contents 1. Teleport 1.1 Introduction to...

Example of using mycat to implement MySQL database read-write separation

What is MyCAT A completely open source large data...