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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-devui",
3
- "version": "1.6.36-alpha.1",
3
+ "version": "1.6.36-alpha.2",
4
4
  "license": "MIT",
5
5
  "description": "DevUI components based on Vite and Vue3",
6
6
  "keywords": [
@@ -9084,7 +9084,6 @@ var Tag = defineComponent({
9084
9084
  } = toRefs(props);
9085
9085
  const tagClass = useClass(props);
9086
9086
  const themeColor = useColor(props);
9087
- const tagTitle = titleContent.value || "";
9088
9087
  const isDefaultTag = () => !type4.value && !color.value;
9089
9088
  const handleClick = (e) => {
9090
9089
  emit("click", e);
@@ -9123,7 +9122,7 @@ var Tag = defineComponent({
9123
9122
  color: contentColor.value,
9124
9123
  backgroundColor: checked.value ? themeColor.value : !color.value ? "" : "var(--devui-base-bg, #ffffff)"
9125
9124
  },
9126
- "title": tagTitle
9125
+ "title": titleContent.value || ""
9127
9126
  }, [(_a = slots.default) == null ? void 0 : _a.call(slots), closeIconEl()])]);
9128
9127
  };
9129
9128
  }