meixioacomponent 0.2.88 → 0.2.89

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": "meixioacomponent",
3
- "version": "0.2.88",
3
+ "version": "0.2.89",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.umd.min.js",
@@ -224,7 +224,7 @@ export default {
224
224
  mounted() {
225
225
  this.$nextTick(() => {
226
226
  if (this.$props.disableWatcher) {
227
- this.triggerDisable();
227
+ this.triggerDisable(this.$props.value);
228
228
  }
229
229
  });
230
230
  },
@@ -351,9 +351,7 @@ export default {
351
351
  return this.$props.value;
352
352
  },
353
353
  set(val) {
354
- console.log(val);
355
354
  this.$emit("input", val);
356
- console.log(this.$props.disableWatcher);
357
355
  if (this.$props.disableWatcher) {
358
356
  this.triggerDisable(val);
359
357
  }
@@ -424,8 +422,8 @@ export default {
424
422
  type: item.type,
425
423
  result: item.fn(val),
426
424
  };
427
- console.log(obj);
428
425
 
426
+ console.log(val);
429
427
  this.$emit("disableWatcherResult", obj);
430
428
  });
431
429
  },