You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
715 B
Vue
38 lines
715 B
Vue
2 years ago
|
<template>
|
||
|
<li
|
||
|
class="el-dropdown-menu__item"
|
||
|
:class="{
|
||
|
'is-disabled': disabled,
|
||
|
'el-dropdown-menu__item--divided': divided
|
||
|
}"
|
||
|
@click="handleClick"
|
||
|
:aria-disabled="disabled"
|
||
|
:tabindex="disabled ? null : -1"
|
||
|
>
|
||
|
<i :class="icon" v-if="icon"></i>
|
||
|
<slot></slot>
|
||
|
</li>
|
||
|
</template>
|
||
|
<script>
|
||
|
import Emitter from 'element-ui/src/mixins/emitter';
|
||
|
|
||
|
export default {
|
||
|
name: 'ElDropdownItem',
|
||
|
|
||
|
mixins: [Emitter],
|
||
|
|
||
|
props: {
|
||
|
command: {},
|
||
|
disabled: Boolean,
|
||
|
divided: Boolean,
|
||
|
icon: String
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
handleClick(e) {
|
||
|
this.dispatch('ElDropdown', 'menu-item-click', [this.command, this]);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|