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);
},
},