You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.4 KiB
75 lines
1.4 KiB
3 years ago
|
<template>
|
||
|
<div
|
||
|
class="el-select-dropdown el-popper"
|
||
|
:class="[{ 'is-multiple': $parent.multiple }, popperClass]"
|
||
|
:style="{ minWidth: minWidth }">
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script type="text/babel">
|
||
|
import Popper from 'element-ui/src/utils/vue-popper';
|
||
|
|
||
|
export default {
|
||
|
name: 'ElSelectDropdown',
|
||
|
|
||
|
componentName: 'ElSelectDropdown',
|
||
|
|
||
|
mixins: [Popper],
|
||
|
|
||
|
props: {
|
||
|
placement: {
|
||
|
default: 'bottom-start'
|
||
|
},
|
||
|
|
||
|
boundariesPadding: {
|
||
|
default: 0
|
||
|
},
|
||
|
|
||
|
popperOptions: {
|
||
|
default() {
|
||
|
return {
|
||
|
gpuAcceleration: false
|
||
|
};
|
||
|
}
|
||
|
},
|
||
|
|
||
|
visibleArrow: {
|
||
|
default: true
|
||
|
},
|
||
|
|
||
|
appendToBody: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
}
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
minWidth: ''
|
||
|
};
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
popperClass() {
|
||
|
return this.$parent.popperClass;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
watch: {
|
||
|
'$parent.inputWidth'() {
|
||
|
this.minWidth = this.$parent.$el.getBoundingClientRect().width + 'px';
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
this.referenceElm = this.$parent.$refs.reference.$el;
|
||
|
this.$parent.popperElm = this.popperElm = this.$el;
|
||
|
this.$on('updatePopper', () => {
|
||
|
if (this.$parent.visible) this.updatePopper();
|
||
|
});
|
||
|
this.$on('destroyPopper', this.destroyPopper);
|
||
|
}
|
||
|
};
|
||
|
</script>
|