vue-devui 1.6.36-alpha.1 → 1.6.36-alpha.2

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.
@@ -9070,7 +9070,6 @@ var Tag = defineComponent({
9070
9070
  } = toRefs(props);
9071
9071
  const tagClass = useClass(props);
9072
9072
  const themeColor = useColor(props);
9073
- const tagTitle = titleContent.value || "";
9074
9073
  const isDefaultTag = () => !type4.value && !color.value;
9075
9074
  const handleClick = (e) => {
9076
9075
  emit("click", e);
@@ -9109,7 +9108,7 @@ var Tag = defineComponent({
9109
9108
  color: contentColor.value,
9110
9109
  backgroundColor: checked.value ? themeColor.value : !color.value ? "" : "var(--devui-base-bg, #ffffff)"
9111
9110
  },
9112
- "title": tagTitle
9111
+ "title": titleContent.value || ""
9113
9112
  }, [(_a = slots.default) == null ? void 0 : _a.call(slots), closeIconEl()])]);
9114
9113
  };
9115
9114
  }