classcard-ui 0.2.721 → 0.2.722

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "classcard-ui",
3
- "version": "0.2.721",
3
+ "version": "0.2.722",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -21,7 +21,7 @@
21
21
  :placeholder="placeholder"
22
22
  @focus="openDropDown()"
23
23
  @input="onInput"
24
- @blur="handleBlur()"
24
+ @blur="handleBlur"
25
25
  :disabled="disabled"
26
26
  />
27
27
  <span
@@ -203,8 +203,8 @@ export default {
203
203
  this.showDropDown = true;
204
204
  this.emitSearch("");
205
205
  },
206
- handleBlur() {
207
- this.$emit('blur');
206
+ handleBlur(event) {
207
+ this.$emit('blur', event);
208
208
  }
209
209
  },
210
210
  watch: {