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:
|
<<: Linux 6 steps to change the default remote port number of ssh
In rows, dark border colors can be defined indivi...
A story about database performance During the int...
If you want to hide content from users of phones, ...
Importing data with incorrect MySQL character set...
Some special characters and icons used in the pro...
MYSQL 5.6 Deployment and monitoring of slave repl...
[LeetCode] 178.Rank Scores Write a SQL query to r...
1. Concat function. Commonly used connection stri...
Table of contents 1. Always use key in v-for loop...
Table of contents 1. Analyzing MySQL from a macro...
Table of contents 1. Anti-shake 2. Throttling 3. ...
Docker is a very popular container technology. Th...
Table of contents 1. Simple page example 2.uni-ap...
1. After entering the container cat /etc/hosts It...
It is mainly a CSS style control and a META tag; C...