element-UI change 事件傳遞自定義參數

背景:element 走馬燈爲例,自帶一個回調函數 @change,咱們無需添加參數,就能獲取到目前激活的幻燈片的索引,原幻燈片的索引,那麼咱們如何傳遞自定義參數呢?bash

解決方法:函數

標籤的 @change 事件:spa

@change="((pre, next) => {change(pre, next, 自定義參數)})"複製代碼

methods 中定義:code

change (pre, next, index) {
      console.log(pre, next, index);
    },複製代碼

ok!大功告成~索引

相關文章
相關標籤/搜索