在vue中模擬點擊事件的方法:1.新建vue.js項目;2.添加按鈕,設置ref屬性;3.添加@click屬性綁定事件;4.使用this方法觸發事件;
具體步驟如下:
1.首先,在vue-cli中創建一個vue.js項目;
vue create project-name
2.vue.js項目創建好后,在項目中添加一個按鈕,并設置ref屬性;
<el-button size="small" type="primary" ref="import">導入</el-button>
3.按鈕添加好后,在按鈕中添加一個@click屬性,用于綁定事件;
<el-button size="small" type="primary" ref="import" @click="searchData()">導入</el-button>
4.最后,事件綁定好后,使用this方法即可觸發點擊事件;
this.$refs.import.$el.click()