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 @@
小工具
-
+
{{ i.title }}
@@ -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
}]);