mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-10-09 23:13:22 +08:00
修复typeToggleTooltip 不显示的BUG
This commit is contained in:
@@ -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: {
|
||||
|
Reference in New Issue
Block a user