From 70f22195a95e287a33de935ec7a3ed8c4093488c Mon Sep 17 00:00:00 2001 From: fofolee Date: Sun, 15 May 2022 20:13:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/popup/AboutThis.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/popup/AboutThis.vue b/src/components/popup/AboutThis.vue index 4405b63..935d428 100644 --- a/src/components/popup/AboutThis.vue +++ b/src/components/popup/AboutThis.vue @@ -20,6 +20,7 @@ flat color="primary" v-for="item in links[group]" + :icon="item.icon" :key="item" @click="item.url ? visit(item.url) : (showMore = true)" :label="item.name" @@ -32,11 +33,7 @@ - + @@ -49,21 +46,25 @@ const links = { plugin: [ { name: "帮助", + icon: "help", url: "https://www.yuque.com/fofolee/mwsoos/bg31vl", desc: "查看插件使用帮助", }, { name: "源码", + icon: "code", url: "https://github.com/fofolee/uTools-quickcommand", desc: "本插件完全开源,记得 ⭐️ 哟", }, { name: "论坛", + icon: "forum", url: "https://yuanliao.info/d/424-242-242", desc: "到猿料论坛参与讨论吧", }, { name: "更多插件", + icon: "extension", desc: "看一看作者的其他插件吧", }, ],