diff --git a/src/components/ConfigurationMenu.vue b/src/components/ConfigurationMenu.vue
index a2df8cd..fb74b15 100644
--- a/src/components/ConfigurationMenu.vue
+++ b/src/components/ConfigurationMenu.vue
@@ -37,7 +37,7 @@
allFeaturesLength
}}
Features
- 当前启用的「快捷命令』数
+ 当前启用的「快捷命令」数
@@ -129,25 +129,6 @@
-
-
-
-
-
- 取消收藏
-
-
-
-
-
- 收藏标签
- 收藏后,会将当前标签名作为全局关键字,可在 uTools 的主输入框进行搜索
-
- 搜索进入后,默认进入当前标签的面板视图
- 类似于旧版本的「快捷面板」
-
@@ -214,20 +195,75 @@
-
-
+
+
-
+
- 帮助取消收藏
+
+
+
+
+
+ 收藏标签
+ 收藏后,会将当前标签名作为全局关键字,可在 uTools 的主输入框进行搜索
+
+ 搜索进入后,默认进入当前标签的面板视图
+ 类似于旧版本的「快捷面板」
+
+
+
+
+
+
+ 关于
-
+
+
+
+
+
+
+
+ {{ pluginInfo.pluginName }} v{{ pluginInfo.version }}
+
+ {{ pluginInfo.description }}
+
+
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
diff --git a/src/js/options/aboutLinks.js b/src/js/options/aboutLinks.js
new file mode 100644
index 0000000..d9b4eee
--- /dev/null
+++ b/src/js/options/aboutLinks.js
@@ -0,0 +1,36 @@
+const links = {
+ plugin: [{
+ name: "帮助",
+ url: "",
+ desc: "查看插件使用帮助"
+ },
+ {
+ name: "源码",
+ url: "https://github.com/fofolee/uTools-quickcommand",
+ desc: "本插件完全开源,记得 Star 哟"
+ }, {
+ name: "论坛",
+ url: "https://yuanliao.info/d/424-242-242",
+ desc: "到猿料论坛参与讨论吧"
+ }
+ ],
+ tech: [{
+ name: "Vue.js",
+ url: "https://v3.cn.vuejs.org/",
+ desc: "基于 Vue.js 开发"
+ }, {
+ name: "Quasar Framework",
+ url: "https://quasar.dev/",
+ desc: "基于 Quasar Framework 开发"
+ }, {
+ name: "Google Fonts",
+ url: "https://fonts.google.com/",
+ desc: "文字图标来自 Google Fonts"
+ }, {
+ name: "Icon8s",
+ url: "https://icons8.com/",
+ desc: "彩色图标来自 Icon8s"
+ }]
+}
+
+export default links
\ No newline at end of file