Solution to automatically trigger click events when clicking on pop-up window in Vue (simulation scenario)

Solution to automatically trigger click events when clicking on pop-up window in Vue (simulation scenario)

Business scenario: Use vue + element ui's el-dialog. After clicking the pop-up window, the data of the first button is loaded by default for initialization.

div

instruction:

 // Automatically trigger click events directives:{
        trigger:{
          inserted(el,binging){
            // console.log("Automatically trigger events")
            el.click()
          }
        }
  },

PS: Let's take a look at vue automatically triggering click events

Yes, click on the list on the left to get the details, but a click event is required. When the page comes in, the click event is triggered by default.

Method 1, vue custom instructions

  directives:{
    trigger:{
     inserted(el, binging){
        console.log(el.id)
        el.id == 'nav0' ? el.click() : null // Only click the first one, the id is manually added in the loop // $(el).trigger('click') // All are triggered once, then the last one}
    }
  },

usage:

 <span class="nav-item" :id="'nav' + index" v-trigger :class="{'active': item.stage == activeId}" @click="navClick(item)" v-for="(item, index) in nav" :key="item.stage">{{item.stage_name}}</span>

The above is the detailed content of the solution (simulated scenario) for automatically triggering click events by clicking on the pop-up window of Vue. For more information about automatically triggering click events of Vue, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to realize automatic triggering function in Vue
  • Vue manually controls the click event Click triggering method
  • Vue triggers input to select file click event operation
  • Actively trigger click events in vue

<<:  Linux 6 steps to change the default remote port number of ssh

>>:  Detailed explanation of the performance monitoring ideas of specified processes in Linux system based on Python

Recommend

HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

In rows, dark border colors can be defined indivi...

Explanation of factors affecting database performance in MySQL

A story about database performance During the int...

Some tips on using the HTML title attribute correctly

If you want to hide content from users of phones, ...

Brief analysis of the MySQL character set causing database recovery errors

Importing data with incorrect MySQL character set...

MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Deployment and monitoring of slave repl...

SQL implementation of LeetCode (178. Score ranking)

[LeetCode] 178.Rank Scores Write a SQL query to r...

Summary of MySQL commonly used type conversion functions (recommended)

1. Concat function. Commonly used connection stri...

7 Ways to Write a Vue v-for Loop

Table of contents 1. Always use key in v-for loop...

How a select statement is executed in MySQL

Table of contents 1. Analyzing MySQL from a macro...

Difference and implementation of JavaScript anti-shake and throttling

Table of contents 1. Anti-shake 2. Throttling 3. ...

Goodbye Docker: How to Transform to Containerd in 5 Minutes

Docker is a very popular container technology. Th...

Detailed explanation of the difference between uniapp and vue

Table of contents 1. Simple page example 2.uni-ap...

Detailed explanation on how to get the IP address of a docker container

1. After entering the container cat /etc/hosts It...