@@ -68,6 +68,9 @@ export default {
},
watch: {
showPopper(val) {
+ if (this.disabled) {
+ return;
+ }
val ? this.$emit('show') : this.$emit('hide');
}
@@ -70,6 +70,9 @@ export default {
val ? this.updatePopper() : this.destroyPopper();
this.$emit('input', val);