From e1955704351a4695b16c20f61279581944bbd950 Mon Sep 17 00:00:00 2001 From: yixu Date: Fri, 3 Oct 2025 21:25:49 +0800 Subject: [PATCH] update --- src/components/HomePage.vue | 9 +++++++-- src/components/Popup.vue | 10 +++++----- src/components/SelectTemplateV2.vue | 15 ++++++++++++++- 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/src/components/HomePage.vue b/src/components/HomePage.vue index 6ee8b7d..16f15ee 100644 --- a/src/components/HomePage.vue +++ b/src/components/HomePage.vue @@ -360,6 +360,11 @@ watch(() => lotteryShow.value, async (newVal) => { initUserGameInfos(true, true); }, { immediate: true }) +import Popup from './Popup.vue' +const isPopupVisible = ref(false); +const navigatePopupPage = () => { + isPopupVisible.value = true; +}