hzzt-plus 0.0.7 → 0.0.8

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.
@@ -12672,12 +12672,12 @@
12672
12672
  retract: "retract"
12673
12673
  },
12674
12674
  pagination: {
12675
- total: "total",
12676
- strip: "strip"
12675
+ total: "",
12676
+ strip: ""
12677
12677
  },
12678
12678
  pageSize: {
12679
- total: "total",
12680
- strip: "strip",
12679
+ total: "Total ",
12680
+ strip: "",
12681
12681
  page: "page",
12682
12682
  d: "",
12683
12683
  per_page: "per page"
@@ -20818,7 +20818,7 @@
20818
20818
  const compKls = vue.computed(() => {
20819
20819
  return [ns.b(), ns.m(trueSize.value)];
20820
20820
  });
20821
- const page = vue.computed(() => Math.ceil(props.total / props.pageSize));
20821
+ const page = vue.computed(() => Math.ceil(props.total / props.pageSize) || 1);
20822
20822
  vue.watch(() => props.pageSize, (val) => {
20823
20823
  sizeValue.value = val;
20824
20824
  });