el-dropdown @command事件传参

<template>
  <el-dropdown @command="handleCommand($event, "111")">
    <span class="el-dropdown-link">
      Dropdown List
      <el-icon class="el-icon--right">
        <arrow-down />
      </el-icon>
    </span>
    <template #dropdown>
      <el-dropdown-menu>
        <el-dropdown-item>Action 1</el-dropdown-item>
        <el-dropdown-item>Action 2</el-dropdown-item>
        <el-dropdown-item>Action 3</el-dropdown-item>
        <el-dropdown-item disabled>Action 4</el-dropdown-item>
        <el-dropdown-item divided>Action 5</el-dropdown-item>
      </el-dropdown-menu>
    </template>
  </el-dropdown>
</template>
<script setup>
const handleCommand = (command, params) => {
  console.log(command, params);
}
</script>
posted @ 2023-06-07 15:08  Li_pk  阅读(665)  评论(0编辑  收藏  举报