Dropdown add custom and visible prop
Dropdown add custom and visible prop
This commit is contained in:
parent
d509d2b2af
commit
51f9f894eb
1 changed files with 13 additions and 3 deletions
|
@ -22,7 +22,7 @@
|
|||
props: {
|
||||
trigger: {
|
||||
validator (value) {
|
||||
return oneOf(value, ['click', 'hover']);
|
||||
return oneOf(value, ['click', 'hover', 'custom']);
|
||||
},
|
||||
default: 'hover'
|
||||
},
|
||||
|
@ -31,6 +31,10 @@
|
|||
return oneOf(value, ['top', 'top-start', 'top-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end', 'right', 'right-start', 'right-end']);
|
||||
},
|
||||
default: 'bottom'
|
||||
},
|
||||
visible: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
@ -40,18 +44,19 @@
|
|||
},
|
||||
data () {
|
||||
return {
|
||||
prefixCls: prefixCls,
|
||||
visible: false
|
||||
prefixCls: prefixCls
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
handleClick () {
|
||||
if (this.trigger === 'custom') return false;
|
||||
if (this.trigger !== 'click') {
|
||||
return false;
|
||||
}
|
||||
this.visible = !this.visible;
|
||||
},
|
||||
handleMouseenter () {
|
||||
if (this.trigger === 'custom') return false;
|
||||
if (this.trigger !== 'hover') {
|
||||
return false;
|
||||
}
|
||||
|
@ -61,6 +66,7 @@
|
|||
}, 250);
|
||||
},
|
||||
handleMouseleave () {
|
||||
if (this.trigger === 'custom') return false;
|
||||
if (this.trigger !== 'hover') {
|
||||
return false;
|
||||
}
|
||||
|
@ -70,6 +76,7 @@
|
|||
}, 150);
|
||||
},
|
||||
handleClose () {
|
||||
if (this.trigger === 'custom') return false;
|
||||
if (this.trigger !== 'click') {
|
||||
return false;
|
||||
}
|
||||
|
@ -103,17 +110,20 @@
|
|||
const $parent = this.hasParent();
|
||||
if ($parent) {
|
||||
this.$nextTick(() => {
|
||||
if (this.trigger === 'custom') return false;
|
||||
this.visible = false;
|
||||
});
|
||||
$parent.$emit('on-hover-click');
|
||||
} else {
|
||||
this.$nextTick(() => {
|
||||
if (this.trigger === 'custom') return false;
|
||||
this.visible = false;
|
||||
});
|
||||
}
|
||||
},
|
||||
'on-haschild-click' () {
|
||||
this.$nextTick(() => {
|
||||
if (this.trigger === 'custom') return false;
|
||||
this.visible = true;
|
||||
});
|
||||
const $parent = this.hasParent();
|
||||
|
|
Loading…
Add table
Reference in a new issue