Pārlūkot izejas kodu

Select: fix remove-tag event param

Leopoldthecoder 7 gadi atpakaļ
vecāks
revīzija
11d2263678
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      packages/select/src/select.vue

+ 1 - 1
packages/select/src/select.vue

@@ -666,7 +666,7 @@
           value.splice(index, 1);
           this.$emit('input', value);
           this.emitChange(value);
-          this.$emit('remove-tag', tag);
+          this.$emit('remove-tag', tag.value);
         }
         event.stopPropagation();
       },