From 7aef427bd92b4804db14a626b9a8e1efda57da76 Mon Sep 17 00:00:00 2001 From: heixinyouzi <2410633923@qq.com> Date: Tue, 5 Nov 2024 08:00:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/widget/index.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/views/widget/index.vue b/src/views/widget/index.vue index 4d2aef3..3f0b0ca 100644 --- a/src/views/widget/index.vue +++ b/src/views/widget/index.vue @@ -5,7 +5,7 @@
小工具
- + @@ -33,19 +33,20 @@ import phone2qq from './component/phone2qq.vue'; import qq2phone from './component/qq2phone.vue'; //mark data -const widgetSelect = ref(0); -const comp = ref(markRaw(qq2phone)); -const title = ref('QQ号查手机号'); +const comp = ref(null); +const title = ref(''); const widgets = ref([{ name: 'qq2phone', comp: markRaw(qq2phone), title: 'QQ号查手机号', - desc: "请勿乱用,打扰别人生活!" + desc: "请勿乱用,打扰别人生活!", + show: false }, { name: 'phone2qq', comp: markRaw(phone2qq), title: '手机号查QQ号', - desc: "请勿乱用,打扰别人生活!" + desc: "请勿乱用,打扰别人生活!", + show: false }]);