Commit cc0ca685 authored by Leopoldthecoder's avatar Leopoldthecoder

remove select unnecessary input emits

parent 609901ae
...@@ -190,8 +190,6 @@ ...@@ -190,8 +190,6 @@
}, },
value(val) { value(val) {
this.$emit('input', val);
this.$emit('change', val);
if (this.valueChangeBySelected) { if (this.valueChangeBySelected) {
this.valueChangeBySelected = false; this.valueChangeBySelected = false;
return; return;
...@@ -486,6 +484,7 @@ ...@@ -486,6 +484,7 @@
this.selected = {}; this.selected = {};
this.selectedLabel = ''; this.selectedLabel = '';
this.$emit('input', ''); this.$emit('input', '');
this.$emit('change', '');
this.visible = false; this.visible = false;
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment