最近餓了么ui挺火,連美團都有項目組再用,剛好最近項目重構,就引入了進來,剛用上就發現一個大坑,在配合vue使用時,居然無法添加自定義事件
找了半天才發現原因是需要在事件后面加上 ‘’.native‘’,上個例子
<el-dropdown> <span class="el-dropdown-link"> <span class="ovfwPoint">{{item.partItemName}}</span> <i class="el-icon-caret-bottom el-icon--right"></i> </span> <el-dropdown-menu slot="dropdown"> <template v-for="insuranceItem in insureTermList"> <el-dropdown-item @click.native="insurance(insuranceItem,item)">{{insuranceItem.insureTerm}}</el-dropdown-item> </template> </el-dropdown-menu> </el-dropdown>