From 5a65f4c5f97fa43a9e3db421562619b4164e4509 Mon Sep 17 00:00:00 2001 From: fofolee Date: Sun, 16 Feb 2025 16:37:42 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E8=8F=9C=E5=8D=95=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=8F=AF=E8=A7=86=E5=8C=96=E7=BC=96=E6=8E=92=E5=85=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu/UtilityFeaturesMenu.vue | 31 +++++++++++++++------ 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/src/components/menu/UtilityFeaturesMenu.vue b/src/components/menu/UtilityFeaturesMenu.vue index 6008f54..3b12ac6 100644 --- a/src/components/menu/UtilityFeaturesMenu.vue +++ b/src/components/menu/UtilityFeaturesMenu.vue @@ -110,11 +110,9 @@ 通过本地监听 - {{ - $root.nativeProfile.serverPort - }} + {{ $root.nativeProfile.serverPort }} 端口的形式,接收用户传送过来的参数,然后根据参数执行不同的操作 -
需要配置插件跟随 utools 启动和保留后台
也可在主输入框通过关键字「快捷命令服务配置」进入 +
需要配置插件跟随 utools 启动和保留后台
可在主输入框通过关键字「快捷命令服务配置」进入
@@ -132,7 +130,26 @@ - 一个可以直接运行代码的代码编辑器
也可在主输入框输入关键字「RunCode」进入 + 一个可以直接运行代码的代码编辑器
可在主输入框输入关键字「RunCode」进入 +
+ + + + + + + + + + + 一个可视化编排工具,包含可以直接运行的超过一百种实用工具,也可以组合功能创建自动化流程 +
可在主输入框输入关键字「RunComposer」进入
@@ -154,9 +171,7 @@ export default { methods: { toggleFeature(type, enable) { enable - ? this.utools.setFeature( - window.lodashM.cloneDeep(features[type]) - ) + ? this.utools.setFeature(window.lodashM.cloneDeep(features[type])) : this.utools.removeFeature(features[type].code); }, },