修复typeToggleTooltip 不显示的BUG

This commit is contained in:
fofolee 2025-01-22 15:30:30 +08:00
parent ab83bb3d5f
commit d6ab5b2b9c

View File

@ -207,13 +207,14 @@ export default defineComponent({
isString: value,
});
},
typeToggleTooltip() {
const currentType = this.isString
? "字符串"
: "变量、数字、表达式、函数等";
const toggleText = this.disableToggleType ? "" : ",点击切换";
return `当前类型是:${currentType}${toggleText}`;
},
},
typeToggleTooltip() {
const currentType = this.isString
? "字符串"
: "变量、数字、表达式、函数等";
const toggleText = this.disableToggleType ? "" : ",点击切换";
return `当前类型是:${currentType}${toggleText}`;
},
inputValue: {