@creatorsn/vfluent3 0.3.39 → 0.3.40

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/dist/vfluent3.js CHANGED
@@ -22377,7 +22377,7 @@ const Go = /* @__PURE__ */ Se(wy, [["render", $y]]), Cy = { class: "fix-block" }
22377
22377
  },
22378
22378
  data() {
22379
22379
  return {
22380
- thisValue: this.modelValue.toString(),
22380
+ thisValue: this.modelValue == null ? "" : this.modelValue.toString(),
22381
22381
  isFocus: !1,
22382
22382
  timer: {
22383
22383
  debounce: null
@@ -22386,7 +22386,7 @@ const Go = /* @__PURE__ */ Se(wy, [["render", $y]]), Cy = { class: "fix-block" }
22386
22386
  },
22387
22387
  watch: {
22388
22388
  modelValue(t) {
22389
- this.thisValue = t.toString();
22389
+ this.thisValue = t == null ? "" : t.toString();
22390
22390
  },
22391
22391
  thisValue(t) {
22392
22392
  clearTimeout(this.timer.debounce), this.timer.debounce = setTimeout(() => {